Skip to content

Commit aab2b9a

Browse files
eksperimentallexmag
authored andcommitted
Add space around vertical bar (elixir-lang#733)
1 parent 558ce5e commit aab2b9a

9 files changed

+20
-20
lines changed

_posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The idea of the parallel compiler is very simple: for each file we want to compi
1414

1515
In Elixir, we could write this code as follows:
1616

17-
def spawn_compilers([current|files], output) do
17+
def spawn_compilers([current | files], output) do
1818
parent = Process.self()
1919
child = spawn_link(fn ->
2020
:elixir_compiler.file_to_path(current, output)
@@ -32,7 +32,7 @@ In Elixir, we could write this code as follows:
3232
:done
3333
end
3434

35-
In the first line, we define a function named `spawn_compilers` that receives two arguments, the first is a list of files to compile and the second is a string telling us where to write the compiled file. The first argument is represented as a list with head and tail (`[current|files]`) where the top of the list is assigned to `current` and the remaining items to `files`. If the list is empty, the first clause of `spawn_compilers` is not going to match, the clause `spawn_compilers([], _output)` defined at the end will instead.
35+
In the first line, we define a function named `spawn_compilers` that receives two arguments, the first is a list of files to compile and the second is a string telling us where to write the compiled file. The first argument is represented as a list with head and tail (`[current | files]`) where the top of the list is assigned to `current` and the remaining items to `files`. If the list is empty, the first clause of `spawn_compilers` is not going to match, the clause `spawn_compilers([], _output)` defined at the end will instead.
3636

3737
Inside `spawn_compilers`, we first retrieve the PID of the current process with `Process.self` (remember we are talking about Erlang processes/actors and not OS processes) and then proceed to spawn a new process to execute the given function in parallel. Spawning a new process is done with the `spawn_link` function.
3838

@@ -121,13 +121,13 @@ Notice that we have two small additions. First we store the `:elixir_parent_comp
121121

122122
Second, our main process can now receive a new `{ :waiting, child, module }` message, so we need to extend it to account for those messages. Not only that, we need to control which PIDs we have spawned so we can notify them whenever a new module is compiled, forcing us to add a new argument to the `spawn_compilers` function. `spawn_compilers` would then be rewritten as follows:
123123

124-
def spawn_compilers([current|files], output, stack) do
124+
def spawn_compilers([current | files], output, stack) do
125125
parent = Process.self()
126126
child = spawn_link(fn ->
127127
:elixir_compiler.file_to_path(current, output)
128128
send parent, { :compiled, Process.self() }
129129
end)
130-
wait_for_messages(files, output, [child|stack])
130+
wait_for_messages(files, output, [child | stack])
131131
end
132132

133133
# No more files and stack is empty, we are done

_posts/2013-05-23-elixir-v0-9-0-released.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ defimpl Enumerable, for: List do
7777
do_reduce(list, acc, fun)
7878
end
7979

80-
defp do_reduce([h|t], acc, fun) do
80+
defp do_reduce([h | t], acc, fun) do
8181
do_reduce(t, fun.(h, acc), fun)
8282
end
8383

@@ -101,7 +101,7 @@ The `Enum.map/2` we have used above is now implemented in terms of this reducing
101101
defmodule Enum do
102102
def map(collection, fun) do
103103
Enumerable.reduce(collection, [], fn(x, acc) ->
104-
[fun.(x, acc)|acc]
104+
[fun.(x, acc) | acc]
105105
end) |> reverse
106106
end
107107
end

_posts/2013-12-11-elixir-s-new-continuable-enumerators.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function.
152152
```elixir
153153
defmodule Interleave do
154154
def interleave(a, b) do
155-
step = fn x, acc -> { :suspend, [x|acc] } end
155+
step = fn x, acc -> { :suspend, [x | acc] } end
156156
af = &Enumerable.reduce(a, &1, step)
157157
bf = &Enumerable.reduce(b, &1, step)
158158
do_interleave(af, bf, []) |> :lists.reverse()

crash-course.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Pattern matching in Elixir is based on Erlang's implementation and in general is
461461
**Erlang**
462462

463463
```erlang
464-
loop_through([H|T]) ->
464+
loop_through([H | T]) ->
465465
io:format('~p~n', [H]),
466466
loop_through(T);
467467

@@ -472,7 +472,7 @@ loop_through([]) ->
472472
**Elixir**
473473

474474
```elixir
475-
def loop_through([h|t]) do
475+
def loop_through([h | t]) do
476476
IO.inspect h
477477
loop_through t
478478
end

getting-started/basic-types.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ What is the difference between lists and tuples?
348348
Lists are stored in memory as linked lists, meaning that each element in a list holds its value and points to the following element until the end of the list is reached. We call each pair of value and pointer a **cons cell**:
349349

350350
```iex
351-
iex> list = [1|[2|[3|[]]]]
351+
iex> list = [1 | [2 | [3 | []]]]
352352
[1, 2, 3]
353353
```
354354

getting-started/meta/domain-specific-languages.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ defmodule TestCase do
165165
function_name = String.to_atom("test " <> description)
166166
quote do
167167
# Prepend the newly defined test to the list of tests
168-
@tests [unquote(function_name)|@tests]
168+
@tests [unquote(function_name) | @tests]
169169
def unquote(function_name)(), do: unquote(block)
170170
end
171171
end

getting-started/mix-otp/agent.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ And play a bit with agents:
4040
```iex
4141
iex> {:ok, agent} = Agent.start_link fn -> [] end
4242
{:ok, #PID<0.57.0>}
43-
iex> Agent.update(agent, fn list -> ["eggs"|list] end)
43+
iex> Agent.update(agent, fn list -> ["eggs" | list] end)
4444
:ok
4545
iex> Agent.get(agent, fn list -> list end)
4646
["eggs"]

getting-started/pattern-matching.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ iex> tail
102102
Similar to the `hd/1` and `tl/1` functions, we can't match an empty list with a head and tail pattern:
103103

104104
```iex
105-
iex> [h|t] = []
105+
iex> [h | t] = []
106106
** (MatchError) no match of right hand side value: []
107107
```
108108

@@ -111,7 +111,7 @@ The `[head | tail]` format is not only used on pattern matching but also for pre
111111
```iex
112112
iex> list = [1, 2, 3]
113113
[1, 2, 3]
114-
iex> [0|list]
114+
iex> [0 | list]
115115
[0, 1, 2, 3]
116116
```
117117

@@ -162,7 +162,7 @@ iex> {x, x} = {1, 2}
162162
In some cases, you don't care about a particular value in a pattern. It is a common practice to bind those values to the underscore, `_`. For example, if only the head of the list matters to us, we can assign the tail to underscore:
163163

164164
```iex
165-
iex> [h|_] = [1, 2, 3]
165+
iex> [h | _] = [1, 2, 3]
166166
[1, 2, 3]
167167
iex> h
168168
1

getting-started/recursion.markdown

+5-5
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Let's now see how we can use the power of recursion to sum a list of numbers:
5656

5757
```elixir
5858
defmodule Math do
59-
def sum_list([head|tail], accumulator) do
59+
def sum_list([head | tail], accumulator) do
6060
sum_list(tail, head + accumulator)
6161
end
6262

@@ -68,9 +68,9 @@ end
6868
IO.puts Math.sum_list([1, 2, 3], 0) #=> 6
6969
```
7070

71-
We invoke `sum_list` with the list `[1, 2, 3]` and the initial value `0` as arguments. We will try each clause until we find one that matches according to the pattern matching rules. In this case, the list `[1, 2, 3]` matches against `[head|tail]` which binds `head` to `1` and `tail` to `[2, 3]`; `accumulator` is set to `0`.
71+
We invoke `sum_list` with the list `[1, 2, 3]` and the initial value `0` as arguments. We will try each clause until we find one that matches according to the pattern matching rules. In this case, the list `[1, 2, 3]` matches against `[head | tail]` which binds `head` to `1` and `tail` to `[2, 3]`; `accumulator` is set to `0`.
7272

73-
Then, we add the head of the list to the accumulator `head + accumulator` and call `sum_list` again, recursively, passing the tail of the list as its first argument. The tail will once again match `[head|tail]` until the list is empty, as seen below:
73+
Then, we add the head of the list to the accumulator `head + accumulator` and call `sum_list` again, recursively, passing the tail of the list as its first argument. The tail will once again match `[head | tail]` until the list is empty, as seen below:
7474

7575
```elixir
7676
sum_list [1, 2, 3], 0
@@ -87,8 +87,8 @@ What if we instead want to double all of the values in our list?
8787

8888
```elixir
8989
defmodule Math do
90-
def double_each([head|tail]) do
91-
[head * 2|double_each(tail)]
90+
def double_each([head | tail]) do
91+
[head * 2 | double_each(tail)]
9292
end
9393

9494
def double_each([]) do

0 commit comments

Comments
 (0)