Skip to content

Commit f5847f6

Browse files
brettcannonjosevalim
authored andcommitted
Remove periods at the end of comments for Distributed Tasks page (elixir-lang#1216)
1 parent d0d34cc commit f5847f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getting-started/mix-otp/distributed-tasks-and-configuration.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ defmodule KV.Router do
196196
The routing table.
197197
"""
198198
def table do
199-
# Replace computer-name with your local machine name.
199+
# Replace computer-name with your local machine name
200200
[{?a..?m, :"foo@computer-name"}, {?n..?z, :"bar@computer-name"}]
201201
end
202202
end
@@ -338,7 +338,7 @@ Start IEx with `iex -S mix` and you can see that the IEx prompt has changed.
338338
This means we can also configure our `:routing_table` directly in the `apps/kv/config/config.exs` file:
339339

340340
```elixir
341-
# Replace computer-name with your local machine nodes.
341+
# Replace computer-name with your local machine nodes
342342
config :kv, :routing_table, [{?a..?m, :"foo@computer-name"}, {?n..?z, :"bar@computer-name"}]
343343
```
344344

0 commit comments

Comments
 (0)