Skip to content

Commit a57125d

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

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

system/doc/reference_manual/data_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ adam
402402
{july,29}
403403
4> M2 = maps:update(age, 25, M1).
404404
#{age => 25,date => {july,29},name => adam}
405-
5> map_size(M1).
405+
5> map_size(M2).
406406
3
407407
6> map_size(#{}).
408408
0

system/doc/reference_manual/distributed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Here are some BIFs that are useful for distributed programming:
257257
can connect to other nodes, `false` otherwise.
258258

259259
- [`monitor_node(Node, Bool)`](`erlang:monitor_node/2`) - Monitors the
260-
status of `Node`. A message `{nodedown, Node}` is received if the
260+
status of `Node`. A `{nodedown, Node}` message is received if the
261261
connection to it is lost.
262262

263263
- `node/0` - Returns the name of the current node. Allowed in guards.

system/doc/reference_manual/expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ there is no matching message in the message queue.
755755
> *not* necessarily the case. If the patterns in the clauses of the `receive`
756756
> expression only match specific messages and no such messages exist in the
757757
> message queue, the whole message queue needs to be inspected before the
758-
> timeout can occur. That is, the same as in
758+
> timeout can occur. That is, the same caveat as in
759759
> [the warning above](#selective-receive-warning) applies.
760760
761761
The atom `infinity` will make the process wait indefinitely for a matching

0 commit comments

Comments
 (0)