1
0
mirror of https://github.com/janet-lang/janet synced 2026-03-18 05:39:48 +00:00

Small typo fixes in comments.

This commit is contained in:
Calvin Rose
2026-03-15 20:22:20 -05:00
parent 8b89901298
commit df32109eea
2 changed files with 2 additions and 2 deletions

View File

@@ -259,7 +259,7 @@ static int lookup_missing(
return 1;
}
/* Check if a binding is defined in an upper scope. This let's us check for
/* Check if a binding is defined in an upper scope. This lets us check for
* variable shadowing. */
int janetc_shadowcheck(JanetCompiler *c, const uint8_t *sym) {
/* Check locals */

View File

@@ -272,7 +272,7 @@ JanetFuncDef *janetc_pop_funcdef(JanetCompiler *c);
/* Create a destroy slot */
JanetSlot janetc_cslot(Janet x);
/* Search for a symbol, and mark any found symbols as "used" for dead code elimintation and linting */
/* Search for a symbol, and mark any found symbols as "used" for dead code elimination and linting */
JanetSlot janetc_resolve(JanetCompiler *c, const uint8_t *sym);
/* Check if a symbol is already in scope for shadowing lints */