From ad82f5b2672e80fb5d97c984aa248cfbd0d6f9e4 Mon Sep 17 00:00:00 2001 From: frederikhors <41120635+frederikhors@users.noreply.github.com> Date: Sun, 23 Feb 2020 11:10:42 +0100 Subject: [PATCH] Fix spelling in docs (#35) --- docs/internals.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/internals.md b/docs/internals.md index bea851b..93d1d39 100644 --- a/docs/internals.md +++ b/docs/internals.md @@ -71,7 +71,7 @@ item{itemObjOpen, 16, 20} // { ... ``` -These tokens are then fed into the parser `parse.go` the parser does the work of generating an abstract syntax tree (AST) from the tokens. This AST is an internal representation (data structure) and is not exposed outside the package. Sinc the AST is a tree a stack `stack.go` is used to walk the tree and generate the QCode AST. The QCode data structure is also a tree (represented as an array). This is then returned to the caller of the compile function. +These tokens are then fed into the parser `parse.go` the parser does the work of generating an abstract syntax tree (AST) from the tokens. This AST is an internal representation (data structure) and is not exposed outside the package. Since the AST is a tree a stack `stack.go` is used to walk the tree and generate the QCode AST. The QCode data structure is also a tree (represented as an array). This is then returned to the caller of the compile function. ```go type Operation struct { @@ -238,4 +238,4 @@ ok github.com/dosco/super-graph/psql 2.530s ## Reach out -If you'd like me to explain other parts of the code please reach out over Twitter or Discord. I'll keep adding to this doc as I get time. \ No newline at end of file +If you'd like me to explain other parts of the code please reach out over Twitter or Discord. I'll keep adding to this doc as I get time.