aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-01 19:58:18 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-01 19:58:18 +0200
commit4a95caabf15db0beeaceea09d1fb4b0964b119c9 (patch)
tree433c377c3e6cf5a50f7dd158bfd2212bbcc9c520
parentcb962cc19004c08381b4425da8cf12a36456a7cb (diff)
Fix style
-rw-r--r--README4
1 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 8895385..c00a5d9 100644
--- a/README
+++ b/README
@@ -104,7 +104,7 @@ The build script also accepts some subcommands. They are as follows:
REALLY_BIG :: 123'456'789'876'543'210;
- pub MyFunc :: () int {
+ pub my_func :: () int {
return BAR;
}
@@ -129,7 +129,7 @@ The build script also accepts some subcommands. They are as follows:
in any order. This lets us define Inner *after* it gets
called by the assignment to ‘x’. */
outer :: () {
- x := Inner(5);
+ x := inner(5);
inner :: (x: int) int {
return x;