mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-25 09:24:47 +03:00
[miniscript/en] Fix typos (#5031)
This commit is contained in:
parent
daa86a4e9b
commit
36370c5a52
@ -133,7 +133,7 @@ print a[1:-1] // same as above, but using a negative index
|
|||||||
print a[1:] // get slice from 1 to the end ("ello")
|
print a[1:] // get slice from 1 to the end ("ello")
|
||||||
print a[:2] // get slice from beginning up to 2 ("He")
|
print a[:2] // get slice from beginning up to 2 ("He")
|
||||||
|
|
||||||
// Note that strings in MiniScript are immutable. You can't reache
|
// Note that strings in MiniScript are immutable. You can't reach
|
||||||
// into a string and change what characters it contains (but you can
|
// into a string and change what characters it contains (but you can
|
||||||
// always create a new string with different characters).
|
// always create a new string with different characters).
|
||||||
```
|
```
|
||||||
@ -250,7 +250,7 @@ print roll(2,20) // roll two 20-sided dice
|
|||||||
// (parameter values) to the function, and (2) you're using the
|
// (parameter values) to the function, and (2) you're using the
|
||||||
// result as part of some larger statement. Notice how the first
|
// result as part of some larger statement. Notice how the first
|
||||||
// example above, rollDie did not need any parentheses because we
|
// example above, rollDie did not need any parentheses because we
|
||||||
// weren't passing an arguments. Here's an example of a function
|
// weren't passing any arguments. Here's an example of a function
|
||||||
// that, like the built-in print function, is used as a statement
|
// that, like the built-in print function, is used as a statement
|
||||||
// by itself, and so does not need parentheses.
|
// by itself, and so does not need parentheses.
|
||||||
doRoll = function(numberOfDice, sides=6)
|
doRoll = function(numberOfDice, sides=6)
|
||||||
|
Loading…
Reference in New Issue
Block a user