From 00de0748a3223d1cf5ab15a0a022e3c9a56dc930 Mon Sep 17 00:00:00 2001 From: Benjamin Schwarze Date: Wed, 17 Feb 2021 09:57:57 +0100 Subject: [PATCH] fix typo --- getting-started/where-to-go-next.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/where-to-go-next.markdown b/getting-started/where-to-go-next.markdown index 48b91682d..2a62b0acc 100644 --- a/getting-started/where-to-go-next.markdown +++ b/getting-started/where-to-go-next.markdown @@ -38,6 +38,6 @@ Elixir runs on the Erlang Virtual Machine and, sooner or later, an Elixir develo * This [Erlang Syntax: A Crash Course](/crash-course.html) provides a concise intro to Erlang's syntax. Each code snippet is accompanied by equivalent code in Elixir. This is an opportunity for you to not only get some exposure to Erlang's syntax but also review some of the things you have learned in this guide. -* Erlang's official website has a short [tutorial](https://www.erlang.org/course). There is chapter with pictures briefly describing Erlang's primitives for [concurrent programming](https://www.erlang.org/course/concurrent_programming.html). +* Erlang's official website has a short [tutorial](https://www.erlang.org/course). There is a chapter with pictures briefly describing Erlang's primitives for [concurrent programming](https://www.erlang.org/course/concurrent_programming.html). * [Learn You Some Erlang for Great Good!](http://learnyousomeerlang.com/) is an excellent introduction to Erlang, its design principles, standard library, best practices, and much more. Once you have read through the crash course mentioned above, you'll be able to safely skip the first couple of chapters in the book that mostly deal with the syntax. When you reach [The Hitchhiker's Guide to Concurrency](http://learnyousomeerlang.com/the-hitchhikers-guide-to-concurrency) chapter, that's where the real fun starts.