Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b3f80b4

Browse files
committed
Fix typo.
1 parent 451b1ab commit b3f80b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/2.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ At the beginning of this chapter we have seen some pattern matching examples:
297297

298298
In Elixir, `=` is not an assignment operator as in programming languages like Java, Ruby, Python, etc. `=` is actually a match operator which will check if the expressions on both left and right side match.
299299

300-
Many control-flow structures in Elixir rely extensively on pattern matching and the ability for different clauses too match. In some cases, you may want to match against the value of a variable, which can be achieved by with the `^` operator:
300+
Many control-flow structures in Elixir rely extensively on pattern matching and the ability for different clauses to match. In some cases, you may want to match against the value of a variable, which can be achieved by with the `^` operator:
301301

302302
iex> x = 1
303303
1

0 commit comments

Comments
 (0)