Skip to content

Commit e862486

Browse files
committed
Fixed typo “…writes to the standard-input…” > standard-output
1 parent 0ef297e commit e862486

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/io-and-the-file-system.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ iex> IO.read(pid, 2)
133133

134134
By modelling IO devices with processes, the Erlang <abbr title="Virtual Machine">VM</abbr> allows different nodes in the same network to exchange file processes in order to read/write files in between nodes. Of all IO devices, there is one that is special to each process: the **group leader**.
135135

136-
When you write to `:stdio`, you are actually sending a message to the group leader, which writes to the standard-input file descriptor:
136+
When you write to `:stdio`, you are actually sending a message to the group leader, which writes to the standard-output file descriptor:
137137

138138
```iex
139139
iex> IO.puts :stdio, "hello"

0 commit comments

Comments
 (0)