Skip to content

Commit f1eb26b

Browse files
committed
Merge pull request elixir-lang#186 from rcoppolo/send-for-messages
Update crash course w/ send for messages instead of deprecated <-
2 parents 8d9194e + af8cf4c commit f1eb26b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crash-course.markdown

+1-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ Some operators are spelled differently.
101101
| =/= | !== | A negative match |
102102
| /= | != | Not equals |
103103
| =< | <= | Less than or equals |
104-
| ! | <- | Send messages |
105104

106105

107106
### Delimiters
@@ -815,7 +814,7 @@ end.
815814
```elixir
816815
pid = Kernel.self
817816

818-
pid <- { :hello }
817+
send pid, { :hello }
819818

820819
receive do
821820
{ :hello } -> :ok

0 commit comments

Comments
 (0)