Skip to content

Commit 3edacf6

Browse files
dnaeonjosevalim
authored andcommitted
Minor fix - enclose function arity in code block (elixir-lang#1225)
1 parent bb04d97 commit 3edacf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/basic-types.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ iex> trunc(3.58)
7979

8080
## Identifying functions
8181

82-
Functions in Elixir are identified by both their name and their arity. The arity of a function describes the number of arguments that the function takes. From this point on we will use both the function name and its arity to describe functions throughout the documentation. `round/1` identifies the function which is named `round` and takes 1 argument, whereas `round/2` identifies a different (nonexistent) function with the same name but with an arity of `2`.
82+
Functions in Elixir are identified by both their name and their arity. The arity of a function describes the number of arguments that the function takes. From this point on we will use both the function name and its arity to describe functions throughout the documentation. `round/1` identifies the function which is named `round` and takes `1` argument, whereas `round/2` identifies a different (nonexistent) function with the same name but with an arity of `2`.
8383

8484
## Booleans
8585

0 commit comments

Comments
 (0)