Skip to content

Commit 3c64f67

Browse files
committed
Minor tweaks in Introduction to Mix
1 parent 2e15aee commit 3c64f67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

getting-started/mix-otp/introduction-to-mix.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ $ mix compile
128128
Will output:
129129
130130
Compiled lib/kv.ex
131-
Generated kv.app
131+
Generated kv app
132132
133133
Notice the `lib/kv.ex` file was compiled and `kv.app` file was generated. All this took place in a directory structure of its own, inside the `_build` folder. This `.app` file is generated with the information from the `application/0` function in the `mix.exs` file. We will further explore `mix.exs` configuration features in future chapters.
134134
@@ -161,13 +161,13 @@ It is important to note a couple things:
161161
Mix also generated a file named `test/test_helper.exs` which is responsible for setting up the test framework:
162162

163163
```elixir
164-
ExUnit.start
164+
ExUnit.start()
165165
```
166166

167167
This file will be automatically required by Mix every time before we run our tests. We can run tests with `mix test`:
168168

169169
Compiled lib/kv.ex
170-
Generated kv.app
170+
Generated kv app
171171
.
172172

173173
Finished in 0.04 seconds (0.04s on load, 0.00s on tests)

0 commit comments

Comments
 (0)