Description
This issue was originally filed by [email protected]
What steps will reproduce the problem?
- Open http://www.dartlang.org/docs/spec/dartLangSpec.pdf
- Search for "indent" (without the quotes)
- Notice how this should rather read ident instead.
What is the expected output? What do you see instead?
I see what must be a typo.
What version of the product are you using? On what operating system?
Dart Programming Language Specification
Draft Version 0.01
The Dart Team
October 10th, 2011
Please provide any additional information below.
Here is a copy/paste from the pdf (with the fi ligature manually reapaired). See my (sic) annotations for where I think the typos are:
11.9
Try
The try statement supports the definition of exception handling code in a struc-
tured way.
tryStatement:
try block (catchPart+ finallyPart? | finallyPart)
;
catchPart:
catch ‘(’ declaredIndentifier (sic) (‘, ’ declaredIndentifier (sic))? ‘)’ block
;
finallyPart:
finally block
;