| Example | Incorrect Code | Corrected Code |
| 2.2 | data allgrads; | data gpagrads; |
| 3.2 | merge agents sales rates; | merge agents properties rates; |
| 5.6 | 100*(yes+no)/calculated total_voters_town as pct_voters_precinct format=5.1 | 100*(yes+no)/calculated total_voters_town as pct_precinct_town format=5.1, |
| 8.15 | array evals{*} eval_fast-character-eval_4hr; | array eval{*} eval_fast-character-eval_4hr; |