Fix a typo that broke procedure declarations.

This commit is contained in:
Bill Currie 2011-01-06 20:24:06 +09:00
parent 7971b0868e
commit 129a36064f
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ static keyword_t keywords[] = {
{"array", ARRAY, 0},
{"of", OF, 0},
{"function", FUNCTION, 0},
{"prodedure", PROCEDURE, 0},
{"procedure", PROCEDURE, 0},
{"begin", PBEGIN, 0},
{"end", END, 0},
{"if", IF, 0},