From 0ea0e35e68c59e5348340cdc659e2f3558cfe5ea Mon Sep 17 00:00:00 2001 From: douira Date: Sun, 16 Apr 2023 01:40:38 +0200 Subject: [PATCH] typos --- docs/development.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development.md b/docs/development.md index 98a21ed9..e89d7b47 100644 --- a/docs/development.md +++ b/docs/development.md @@ -37,12 +37,12 @@ gradle test --tests GrammarDebugTest ### Generic Type Parameters -Generic type parameters are named with the follwing rules: +Generic type parameters are named with the following rules: - `N` for `extends ASTNode` - `C` for `extends ParserRuleContext` - `T` for `extends ParseTree` -- `Child` for `extends ASTNode` if it's the child parameter of an `ASTNode` sub class +- `Child` for `extends ASTNode` if it's the child parameter of an `ASTNode` subclass - `J` for `extends JobParameters` - `E` for extending some kind of Enum - `R` for some other return type @@ -89,7 +89,7 @@ fs.readFileSync("split").toString().split("//split_marker").map(str => str.trim( ### TODO - Enum value index (index that finds nodes based on their enum values) - Optional indexes: option to turn off indexes for performance reasons and only if necessary -- Partial indexes: indexes that only index certain enum values, class types or identifiers to reduce memory usage and improve ast build performance +- Partial indexes: indexes that only index certain enum values, class types or identifiers to reduce memory usage and improve AST build performance - Configuration of partial indexes can happen at construction - Make glsl-transformer thread safe so that it can be run in parallel on different transformation jobs - Try to remove double detachParent call when removing items from a list