Skip to content
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

fix a typo in ocaml-syntax-shims #2376

Merged
merged 3 commits into from
Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from 2 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: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@
- Fix dependency graph of wrapped_compat modules. Previously, the dependency on
the user written entry module was omitted. (#2305, @rgrinberg)

- Fix a bug in `future_syntax` where the characters `@` and `&` were
not distinguished in the names of binding operators (`let@` was the
same as `let&`) (#2376, @aalekseyev, @diml)

1.10.0 (04/06/2019)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion src/ocaml-syntax-shims/let_trail.mll
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
| '=' -> "equal"
| '>' -> "greater"
| '?' -> "question"
| '@' -> "ampersand"
| '@' -> "at"
| '^' -> "circumflex"
| '|' -> "pipe"
| _ -> assert false
Expand Down