Skip to content

Commit

Permalink
chore: Make cspell happy
Browse files Browse the repository at this point in the history
  • Loading branch information
N3rdL0rd committed Dec 21, 2024
1 parent d59572e commit 096b610
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@
"gindex",
"Graphviz",
"Haxe",
"hlasm",
"hlbc",
"ISFALSE",
"isort",
"ISTRUE",
"justfile",
"labelfontsize",
"labelloc",
"multitool",
"mypy",
"nassigns",
"nbindings",
Expand All @@ -52,6 +57,7 @@
"nregs",
"nstrings",
"ntypes",
"opargs",
"pacman",
"pdoc",
"pindex",
Expand Down
2 changes: 1 addition & 1 deletion crashlink/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def save_and_exit() -> None:
os.unlink(file)
return
try:
with open(file, "r", encoding="utf-8") as f2: # whyyyy mypy, whyyyy???
with open(file, "r", encoding="utf-8") as f2: # why mypy, why???
modified = f2.read()

lines = modified.split("\n")
Expand Down
2 changes: 1 addition & 1 deletion crashlink/opcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,5 +299,5 @@
Ret. 1
```
When writing opcodes in this format, seperate each argument to the opcode with a period. For opcodes that require lists, pass them in JSON format, e.g. `CallN. [reg, reg, reg, reg]`.
When writing opcodes in this format, separate each argument to the opcode with a period. For opcodes that require lists, pass them in JSON format, e.g. `CallN. [reg, reg, reg, reg]`.
"""

0 comments on commit 096b610

Please sign in to comment.