diff options
| author | Joel Martin <github@martintribe.org> | 2015-03-07 08:59:03 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-03-07 08:59:03 -0600 |
| commit | 64574360c510d644f5b8c175dbe3114f1f2d7b68 (patch) | |
| tree | ea7309f4021b6803c4054d90075510a0eb043c31 | |
| parent | 138901f99a4494fc377b6bbbe6f68bf16846f915 (diff) | |
| parent | 2315fd53e1a32cb237c9e8d02491f4881be31a18 (diff) | |
| download | mal-64574360c510d644f5b8c175dbe3114f1f2d7b68.tar.gz mal-64574360c510d644f5b8c175dbe3114f1f2d7b68.zip | |
Merge pull request #33 from microamp/typos
typos
| -rw-r--r-- | process/guide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/process/guide.md b/process/guide.md index df7eb5e..27f17d6 100644 --- a/process/guide.md +++ b/process/guide.md @@ -255,7 +255,7 @@ expression support. instance. * Add a function `tokenizer` in `reader.qx`. This function will take - a single single string and return an array/list + a single string and return an array/list of all the tokens (strings) in it. The following regular expression (PCRE) will match all mal tokens. ``` @@ -270,7 +270,7 @@ expression support. is a mal data type. If your target language is statically typed then you will need some way for `read_form` to return a variant or subclass type. For example, if your language is object oriented, - then you cal define a top level MalType (in `types.qx`) that all + then you can define a top level MalType (in `types.qx`) that all your mal data types inherit from. The MalList type (which also inherits from MalType) will contains a list/array of other MalTypes. If your language is dynamically typed then you can likely just |
