Skip to content

Commit c31d12a

Browse files
Eroljosevalim
authored andcommitted
Fix typo in Getting Started: GenServer (elixir-lang#746)
1 parent 173a34d commit c31d12a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/mix-otp/genserver.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ end
147147

148148
Our test should pass right out of the box!
149149

150-
We don't need to explictly shut down the registry because it will receive a `:shutdown` signal when our test finishes. While this solution is ok for tests, if there is a need to stop a `GenServer` as part of the application logic, one can use the `GenServer.stop/1` function:
150+
We don't need to explicitly shut down the registry because it will receive a `:shutdown` signal when our test finishes. While this solution is ok for tests, if there is a need to stop a `GenServer` as part of the application logic, one can use the `GenServer.stop/1` function:
151151

152152
```elixir
153153
## Client API

0 commit comments

Comments
 (0)