diff --git a/getting_started/meta/2.markdown b/getting_started/meta/2.markdown index e9bc0bdbe..1c3b2aed4 100644 --- a/getting_started/meta/2.markdown +++ b/getting_started/meta/2.markdown @@ -8,7 +8,7 @@ guide: 2 Macros can be defined in Elixir using `defmacro/2`. -> For this chapter, we will be using files instead of running code samples in IEx. That's because the code samples will spawn multiple lines of code and typing them all in IEx can be counter-productive. You should be able to run the code samples by saving them into a `macros.exs` file and running it with `elixir macros.exs` or `iex macros.exs`. +> For this chapter, we will be using files instead of running code samples in IEx. That's because the code samples will span multiple lines of code and typing them all in IEx can be counter-productive. You should be able to run the code samples by saving them into a `macros.exs` file and running it with `elixir macros.exs` or `iex macros.exs`. ## 2.1 Our first macro