Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Textual updates to Strings chapter #1974

Merged
merged 1 commit into from Sep 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions en/lessons/basics/strings.md
Expand Up @@ -120,9 +120,9 @@ iex> String.split("Hello World", " ")
["Hello", "World"]
```

## Exercises
## Exercise

Let's walk through a simple exercises to demonstrate we are ready to go with Strings!
Let's walk through a simple exercise to demonstrate we are ready to go with Strings!

### Anagrams

Expand Down Expand Up @@ -152,7 +152,7 @@ defmodule Anagram do
end
```

Let's first give a watch to `anagrams?/2`.
Let's first look at `anagrams?/2`.
We are checking whether the parameters we are receiving are binaries or not.
That's the way we check if a parameter is a String in Elixir.

Expand Down