_This issue was originally filed by adrian.ai...@gmail.com_ --- **What steps will reproduce the problem?** 1. Open http://www.dartlang.org/docs/spec/dartLangSpec.pdf 2. Search for "indent" (without the quotes) 3. 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 ;