Skip to content

Commit

Permalink
Woops
Browse files Browse the repository at this point in the history
  • Loading branch information
Seggan committed Dec 13, 2023
1 parent 19ca5c6 commit a133644
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def highlight(match):
group = match.group(1)
proc = subprocess.Popen(
["java", "-jar", "../app/build/libs/metis.jar", "--syntax-highlight", "-c", group],
["java", "-jar", "../metis-app/build/libs/metis.jar", "--syntax-highlight", "-c", group],
stdout=subprocess.PIPE
)
return proc.stdout.read().decode("utf-8")
Expand Down
2 changes: 1 addition & 1 deletion docs/index.papyri
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This will create a JAR file in `metis-app/build/libs` that can be run with `java
[
{Fixed upvalues having the wrong value when the function is passed as an argument},
{Added functions to `list` and `string`},
{Changed the comment character from `//` to `\#`},
{Changed the comment character from `//` to `#`},
{Implemented the `**` (power) and `//` (floor division) operators},
{Changed `__inclrange__` to `__inclRange__` for consistency},
]
Expand Down
2 changes: 1 addition & 1 deletion docs/lang/index.papyri
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ end)

Coroutines can be run with `coroutine.run`:

@metis `x:run() # "hello"`
@metis `x.run() # "hello"`

@h2 { Operators }

Expand Down

0 comments on commit a133644

Please sign in to comment.