Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #21

Merged
merged 1 commit into from Aug 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion QUICKSTART.md
Expand Up @@ -806,7 +806,7 @@ You can embed fragments of the target language into wax, similar to embedding as

### Datatype mapping

wax tries to give the genrated code an "idomatic" look & feel by mapping wax types directly to common types in target language whenever possible, in favor of rolling out custom ones.
wax tries to give the generated code an "idiomatic" look & feel by mapping wax types directly to common types in target language whenever possible, in favor of rolling out custom ones.

| | int | float | str | vec | arr | map |
|---|-----|-------|-----|-----|-----|-----|
Expand Down
2 changes: 1 addition & 1 deletion src/parser.c
Expand Up @@ -127,7 +127,7 @@ const char* tokens_desc[] = {"","L-PAREN","R-PAREN","INT-LIT","FLT-LIT","STR-LIT
#define EXPR_STRNEQ 606
#define EXPR_STRCAT 607

// funciton things
// function things
#define EXPR_FUNCBODY 651
#define EXPR_FUNCHEAD 652

Expand Down