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

Update training-day.markdown #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions training-day.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ want to group code into our own *functions*.

Lets start writing a function `(hello who)`, which returns an English
greeting for the user. Functions are created with `fn`. Write the
following in you REPL and evaluate it.
following in your REPL and evaluate it.

~~~clojure
(fn [who] (str "Hello, " who "!"))
Expand Down Expand Up @@ -424,7 +424,7 @@ file `src/training_day.clj`. Remember to run the tests with `lein
midje`.

~~~clojure
aswer ;=> 42
answer ;=> 42
~~~

</exercise>
Expand Down Expand Up @@ -544,7 +544,7 @@ hyphen, the corresponding file name should have an underscore.

</alert>

We are at cross roads. Choose to right set of instructions based on
We are at cross roads. Choose the right set of instructions based on
your REPL.

<info>
Expand Down Expand Up @@ -615,7 +615,7 @@ parameters:
</exercise>

Now would be the time to submit your solutions to be graded. Run `lein
midje` to see if all the tests pass. If the do, you should see the
midje` to see if all the tests pass. If they do, you should see the
following:

~~~sh
Expand Down Expand Up @@ -644,7 +644,7 @@ it.
Click on the green `Compare & review` button. When you are ready, click
`Send pull request`.

If you didn't submit the solutions all at once, or some of the submited ones
If you didn't submit the solutions all at once, or some of the submitted ones
were incorrect, you can re-submit as many times as you need to. Just fix the
code and follow the steps 1 and 2 again. When you push, the open pull request
is updated.
Expand Down