Skip to content

Commit 907614c

Browse files
committed
Fixed some typos
1 parent 42aa067 commit 907614c

13 files changed

+13
-13
lines changed

_build/reference/1802-math-transpose.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Calculates the transpose `A` of a 2D matrix or a vector `M`.
66

7-
### Example 1: Transpose of a vetor
7+
### Example 1: Transpose of a vector
88

99
```
1010
A = [1;2;3;4]

_build/reference/527-console-input.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> INPUT [prompt,|;] var[, var [, ...]]
44
5-
Reads text from keyboard and stores it in the variable `var`. The string `prompt` is printed on the screen. If `promt` is followed by a `;`, a question mark and a space are printed additionally. If you want to input two or more variables, the input needs to be separated with `,`.
5+
Reads text from keyboard and stores it in the variable `var`. The string `prompt` is printed on the screen. If `prompt` is followed by a `;`, a question mark and a space are printed additionally. If you want to input two or more variables, the input needs to be separated with `,`.
66

77
### Example 1: Using a single var
88

_build/reference/561-data-lbound.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> lb = LBOUND (array [, dim])
44
5-
Returns the lower bound `lb` of an array `array`. `dim` can be used to specifiy, at which dimension the lower bound should be returned if `array` is a multi-dimensional array. If `dim` is not used the lower bound of the first dimension will be returned.
5+
Returns the lower bound `lb` of an array `array`. `dim` can be used to specify, at which dimension the lower bound should be returned if `array` is a multi-dimensional array. If `dim` is not used the lower bound of the first dimension will be returned.
66

77
See UBOUND for upper bound of an array.
88

_build/reference/567-data-ubound.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> ub = UBOUND (array [, dim])
44
5-
Returns the upper bound `ub` of an array `array`. `dim` can be used to specifiy, at which dimension the upper bound should be returned if `array` is a multi-dimensional array. If `dim` is not used the upper bound of the first dimension will be returned.
5+
Returns the upper bound `ub` of an array `array`. `dim` can be used to specify, at which dimension the upper bound should be returned if `array` is a multi-dimensional array. If `dim` is not used the upper bound of the first dimension will be returned.
66

77
See LBOUND for lower bound of an array.
88

_build/reference/620-graphics-plot.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Plots the graph of `f(x)` in the range from `xmin` to `xmax`. The variable must
77
### Example
88

99
```
10-
' Set wite background and drawing color to red
10+
' Set white background and drawing color to red
1111
color rgb(255,0,0), rgb(255,255,255)
1212
cls
1313

_build/reference/655-language-select.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> SELECT CASE expr
44
55
Perform multiple tests on the expression `expr`. Offers a more concise syntax to writing successive IF tests.
6-
Once a case statement is fullfilled the select-case structure will be exited and all following case statements will not be tested anymore.
6+
Once a case statement is fulfilled the select-case structure will be exited and all following case statements will not be tested anymore.
77

88
See also IF ... THEN ... ELIF ... ELSE ... FI structure.
99

_build/reference/698-math-m3ident.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ M = |0 1 0|
1010
|0 0 1|
1111
```
1212

13-
The Identy matrix can be used with M3TRANS, M3SCALE, M3ROTATE and M3APPLY to perform 2D transformations of a poly-line.
13+
The Identity matrix can be used with M3TRANS, M3SCALE, M3ROTATE and M3APPLY to perform 2D transformations of a poly-line.
1414

1515
### Example
1616

_build/reference/706-math-absmin.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> f = ABSMIN (var1 [, var2, ... , varN] )
44
5-
Returns the absolute minumum value of `var1` to `varN`. `var1` to `varN` can be numbers and arrays of numbers.
5+
Returns the absolute minimum value of `var1` to `varN`. `var1` to `varN` can be numbers and arrays of numbers.
66

77
See ABSMAX for absolute maximum value.
88

_build/reference/784-string-leftof.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> s = LEFTOF (s1, s2)
44
5-
Returns the left part of `s1` at the position of the first occurrence of the string `s2` in string `s1`. If `s2` does not occure in string `s1`, an empty string will be returned.
5+
Returns the left part of `s1` at the position of the first occurrence of the string `s2` in string `s1`. If `s2` does not occur in string `s1`, an empty string will be returned.
66

77
### Example
88

_build/reference/785-string-leftoflast.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> s = LEFTOFLAST (s1, s2)
44
5-
Returns the left part of `s1` at the position of the last occurrence of the string `s2` in string `s1`. If `s2` does not occure in `s1`, an empty string will be returned.
5+
Returns the left part of `s1` at the position of the last occurrence of the string `s2` in string `s1`. If `s2` does not occur in `s1`, an empty string will be returned.
66

77
### Example
88

0 commit comments

Comments
 (0)