Skip to content

Fix: Minor typos #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ f "b"
2
```

Scrapscript's functions are greedy -- they grab code until they hit a `.` or
Scrapscript's functions are greedy -- they grab code until they hit a `;` or
matching `)`. Scrapscript doesn't care about whitespace, so indentation won't
help you.

Expand Down Expand Up @@ -526,7 +526,7 @@ typ::fun (n -> x * 2)
Use pattern matching to grab the contents of each alternative:

```{.language-haskell}
hand::left 5 |>
hand::l 5 |>
| #l n -> n * 2
| #r n -> n * 3
; hand :
Expand Down