diff --git a/docs/source/devguide.html b/docs/source/devguide.html index 0d4e7e3e2..c93e572bd 100644 --- a/docs/source/devguide.html +++ b/docs/source/devguide.html @@ -46,7 +46,7 @@
execute(basic_code)
evaluate(basic_expr)
Evaluate a BASIC expression and return its value as a Python value.
- For type converson rules, see get_variable
.
+ For type conversion rules, see get_variable
.
set_variable(name, value)
diff --git a/docs/source/guide.html b/docs/source/guide.html
index 942d6dc59..95abfd61a 100644
--- a/docs/source/guide.html
+++ b/docs/source/guide.html
@@ -15,7 +15,7 @@
A program is normally executed starting with its lowest line number (or the line number called by RUN
). Statements on a line are executed from
left to right. When all statements on a line are finished, execution moves to the next lowest line number, and so on until no line numbers are left.
- Control flow statements can be used to modify this normal flow of executon.
+ Control flow statements can be used to modify this normal flow of execution.
The END
and STOP
statements serve
@@ -128,7 +128,7 @@
The ON
statement provides an alternative branching construct. An integer value is used to selects
one of a list of line numbers, and execution is continued from there. It can be used with a GOTO
jump
- as wellas with a GOSUB
subroutine call.
+ as well as with a GOSUB
subroutine call.
ON
, GOTO
and GOSUB
can also be used from direct mode to start a program or subroutine without resetting variables.
diff --git a/docs/source/reference.html b/docs/source/reference.html
index e7f8e42cd..34f32223d 100644
--- a/docs/source/reference.html
+++ b/docs/source/reference.html
@@ -2575,7 +2575,7 @@
x
is negative, x
is converted to a single-precision floating-point value
and the random number seed is set to the absolute value of its mantissa.
- The function then generates a new pseudorandom numer with this seed.
+ The function then generates a new pseudorandom number with this seed.
Since the only the mantissa of x
is used, any two values whose ratio is a
power of 2 will produce the same seed.
Note that this procedure for generating a new seed differs from that used by RANDOMIZE
.
@@ -9965,7 +9965,7 @@ SAVE
,A
is specified, the program will be saved in plain text format.
In this case, program execution will stop and control will be returned to the user.
- Any further statements on teh line will be ignored, also in direct mode.
+ Any further statements on the line will be ignored, also in direct mode.
,P
is specified, the program will be saved in protected format.
@@ -11444,7 +11444,7 @@ - An I/O error has occured during input/output to a device. This includes faming errors, + An I/O error has occurred during input/output to a device. This includes framing errors, CRC check failures and unexpected end-of-tape on cassette devices.
If a Syntax error occurs during program execution, the error message is followed by a listing of the program line - in which the error occurred, wth the cursor positioned at the location + in which the error occurred, with the cursor positioned at the location where the error was raised.
diff --git a/docs/source/techref.html b/docs/source/techref.html index 83bbab5bd..70acf6766 100644 --- a/docs/source/techref.html +++ b/docs/source/techref.html @@ -515,7 +515,7 @@