Skip to content

Commit

Permalink
Typo: "ov" => "of' (#327)
Browse files Browse the repository at this point in the history
* Typo: "ov" => "of'
* s/Vimscript/Vim script/
  • Loading branch information
blakelewis authored Nov 10, 2024
1 parent d0b1c14 commit 5686086
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 5686086

Please sign in to comment.