Skip to content

Commit d53dcd9

Browse files
juhligbjorng
andcommitted
Suggestions from review
Co-authored-by: Björn Gustavsson <bgustavsson@gmail.com>
1 parent a57125d commit d53dcd9

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

system/doc/reference_manual/data_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ than `2.4`, `3` compares greater than `2.99999`, and `5` is equal to `5.0`.
9999

100100
When wanting to compare an integer with another integer or a float with another
101101
float, it may be tempting to use the term equivalence operators (`=:=`, `=/=`)
102-
or pattern matching. This works for integers which have a distinct representation
102+
or pattern matching. This works for integers, which have a distinct representation
103103
for every number, but there's a surprising edge case for floating-point as the
104104
latter has two representations for zero which are considered different by the
105105
term equivalence operators and pattern matching.

system/doc/reference_manual/errors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ of error:
196196
broken because a connection between the nodes could not be
197197
established or was severed.
198198

199-
- **`{nocatch,V}`** - Trying to evaluate a `throw` outside a
200-
`catch`. `V` is the thrown term.
199+
- **`{nocatch,V}`** - Trying to evaluate a `throw` outside the scope of a
200+
`catch` or `try`/`catch`. `V` is the thrown term.
201201

202202
- **`system_limit`** - A system limit has been reached. See
203203
[System Limits in the Efficiency Guide](`e:system:system_limits.md`)

system/doc/reference_manual/expressions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,8 +708,8 @@ sequence.
708708
> however, be optimized by the compiler and runtime system, namely when
709709
> you create a [*reference*](`e:system:data_types.md#reference`) and
710710
> match on it in all clauses of a `receive` expression *close* to where the
711-
> reference was created. In this case, only the number of messages received after
712-
> the reference was created needs to be inspected. For more information see the
711+
> reference was created. In this case, only the messages received after
712+
> the reference was created need to be inspected. For more information see the
713713
> [*Fetching Received Messages* section of the *Efficiency Guide*](`e:system:eff_guide_processes.md#fetching-received-messages`).
714714
715715
_Example:_

0 commit comments

Comments
 (0)