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

Typo: "ov" => "of' #327

Merged
merged 2 commits into from
Nov 10, 2024
Merged
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 exercises/practice/grains/.docs/instructions.append.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ According to [the Vim docs][number]:

> Assuming 64 bit numbers are used (see v:numbersize) an unsigned number is truncated to 0x7fffffffffffffff or 9223372036854775807.

In other words, Vimscript cannot express any number `2^63` or greater as an integer.
In other words, Vim script cannot express any number `2^63` or greater as an integer.

Some of the tests for this exercise require 64 bit integers which is beyond the integer size limitation ov Vimscript.
Some of the tests for this exercise require 64 bit integers which is beyond the integer size limitation of Vim script.
Because of this limitation, the results of the calculations are tested against a string which expresses the integer value, rather than expressing the answer as Integer.
Can you solve this by avoiding numbers that are larger than the language will allow directly?

Expand Down