Skip to content

Commit 583c040

Browse files
tschmitsjosevalim
authored andcommitted
the send command returns the tuple, not the #PID (elixir-lang#742)
1 parent 4e26d94 commit 583c040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/processes.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ At first, the process map has no keys, so sending a `:get` message and then flus
209209

210210
```iex
211211
iex> send pid, {:put, :hello, :world}
212-
#PID<0.62.0>
212+
{:put, :hello, :world}
213213
iex> send pid, {:get, :hello, self()}
214214
{:get, :hello, #PID<0.41.0>}
215215
iex> flush

0 commit comments

Comments
 (0)