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

Update Syntax.md #1247

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion docs/Syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ an infinite stream of bits.
[t1 .. t2 by n] // Enumeration (stride)
[t1 .. <t2 by n] // Enumeration (stride, ex. bound)
[t1 .. t2 down by n] // Enumeration (downward stride)
[t1 .. >t2 down by n] // Enumeration (downward stride, ex. bound)
[t1 .. <t2 down by n] // Enumeration (downward stride, ex. bound)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the downward one is supposed to be using >? As in:

f = [ 3 .. > 1 down by 1]

[3, 2]

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, you're right. I tried this on a docker nightly version of Cryptol from 2 weeks ago that did not yet have this feature and the interpreter complained so I though it was wrong. After updating to the nightly just now I see that this works.

[t1, t2 .. t3] // Enumeration (step by t2 - t1)

[e1 ...] // Infinite sequence starting at e1
Expand Down