From 548a0e7ddef7f7418951a77274c68f1ec65cef85 Mon Sep 17 00:00:00 2001 From: VeraCologne Date: Sun, 20 Jan 2019 02:47:28 +0100 Subject: [PATCH] fix typo (#28190) --- guide/english/elixir/documentation/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/elixir/documentation/index.md b/guide/english/elixir/documentation/index.md index ae26bd9af1..6fe276d472 100644 --- a/guide/english/elixir/documentation/index.md +++ b/guide/english/elixir/documentation/index.md @@ -3,7 +3,7 @@ title: Documentation --- ## Documentation -One of the best advanced of Elixir in comparison to other programming languages is its documentation system. Elixir's documentation is created by your code comments and made into a pretty HTML Website for you to browse with ease and understand how the application works. Once you understand how to properly comment your code in Elixir, you'll be able to explain how your application works to other programmers with ease. In the examples below we show the usage of Elixir's documentation functions in a fictional webserver module. +One of the best advantages of Elixir in comparison to other programming languages is its documentation system. Elixir's documentation is created by your code comments and made into a pretty HTML Website for you to browse with ease and understand how the application works. Once you understand how to properly comment your code in Elixir, you'll be able to explain how your application works to other programmers with ease. In the examples below we show the usage of Elixir's documentation functions in a fictional webserver module. ### Inline Documentation Inline documentation uses a `#` in front of text describing something about the code. @@ -47,4 +47,4 @@ Function documentation describes the purpose and usage of a single function. Fun #### More Information: * [ElixirSchool - Documentation](https://elixirschool.com/en/lessons/basics/documentation/) -* [ExDoc](https://github.com/elixir-lang/ex_doc) \ No newline at end of file +* [ExDoc](https://github.com/elixir-lang/ex_doc)