We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d751b commit 3957464Copy full SHA for 3957464
index.html
@@ -27,11 +27,11 @@ <h4>Scalability</h4>
27
<p>All Elixir code runs inside lightweight threads of execution (called processes) that are isolated and exchange information via messages:</p>
28
29
{% highlight elixir %}
30
-parent = self()
+current_process = self()
31
32
# Spawns an Elixir process (not an operating system one!)
33
spawn_link(fn ->
34
- send parent, {:msg, "hello world"}
+ send current_process, {:msg, "hello world"}
35
end)
36
37
# Block until the message is received
@@ -175,4 +175,3 @@ <h4>Erlang compatible</h4>
175
</div>
176
177
178
-
0 commit comments