Skip to content

Commit 19fb8ee

Browse files
committed
cleanup: fix comment typos
1 parent 0181242 commit 19fb8ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/api/symboltable/scope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Scope:
2929
3030
The caseins dict stores the symbol names in lowercase only if
3131
the global OPTION ignore case is enabled (True). This is because
32-
most BASIC dialects are case insensitive. 'caseins' will be used
32+
most BASIC dialects are case-insensitive. 'caseins' will be used
3333
as a fallback if the symbol name does not exists.
3434
3535
On init() the parent mangle can be stored. The mangle is a prefix
@@ -55,7 +55,7 @@ def __getitem__(self, key: str) -> Optional[SymbolVAR]:
5555
def __setitem__(self, key: str, value: SymbolVAR):
5656
assert isinstance(value, Symbol)
5757
self.symbols[key] = value
58-
if value.caseins: # Declared with case insensitive option?
58+
if value.caseins: # Declared with case-insensitive option?
5959
self.caseins[key.lower()] = value
6060

6161
def __delitem__(self, key: str):

0 commit comments

Comments
 (0)