From 017130412d00390c34a381c2efbd2edb1179b7da Mon Sep 17 00:00:00 2001 From: hkRho <42980938+hkRho@users.noreply.github.com> Date: Thu, 13 Dec 2018 18:04:54 -0500 Subject: [PATCH] Update index.md (#31612) --- guide/english/elixir/tuples/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/elixir/tuples/index.md b/guide/english/elixir/tuples/index.md index 152485de0d..c0dd6afe01 100644 --- a/guide/english/elixir/tuples/index.md +++ b/guide/english/elixir/tuples/index.md @@ -26,7 +26,7 @@ iex> tuple ## Pattern Matching The most common use of tuples in Elixir is as a return for a function. For example: `{:ok, "Hello World\n"}` -This is a very helpful, as it enables the use of Pattern Matching to handle these returns. +This is very helpful, as it enables the use of Pattern Matching to handle these returns. #### More Information: * [elixir-lang.org | recursion](https://elixir-lang.org/getting-started/basic-types.html#tuples)