Skip to content

Commit 5686086

Browse files
authored
Typo: "ov" => "of' (#327)
* Typo: "ov" => "of' * s/Vimscript/Vim script/
1 parent d0b1c14 commit 5686086

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/grains/.docs/instructions.append.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ According to [the Vim docs][number]:
44

55
> Assuming 64 bit numbers are used (see v:numbersize) an unsigned number is truncated to 0x7fffffffffffffff or 9223372036854775807.
66
7-
In other words, Vimscript cannot express any number `2^63` or greater as an integer.
7+
In other words, Vim script cannot express any number `2^63` or greater as an integer.
88

9-
Some of the tests for this exercise require 64 bit integers which is beyond the integer size limitation ov Vimscript.
9+
Some of the tests for this exercise require 64 bit integers which is beyond the integer size limitation of Vim script.
1010
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.
1111
Can you solve this by avoiding numbers that are larger than the language will allow directly?
1212

0 commit comments

Comments
 (0)