diff options
Diffstat (limited to 'book/src/themes.md')
-rw-r--r-- | book/src/themes.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/book/src/themes.md b/book/src/themes.md index 06f920d3..ad8864b2 100644 --- a/book/src/themes.md +++ b/book/src/themes.md @@ -151,7 +151,9 @@ We use a similar set of scopes as - `operator` - `or`, `in` - `directive` - Preprocessor directives (`#if` in C) - `function` - `fn`, `func` - - `storage` - Keywords that affect the storage of a variable, function or data structure `static`, `mut`, `const`, `ref` + - `storage` - Keywords describing how things are stored + - `type` - The type of something, `class`, `function`, `var`, `let`, etc. + - `modifier` - Storage modifiers like `static`, `mut`, `const`, `ref`, etc. - `operator` - `||`, `+=`, `>` |