@@ -5,9 +5,9 @@ defmodule Mix do
55 build tool for Clojure and was written by one of its contributors.
66
77 This module works as a facade for accessing the most common functionality
8- in Elixir, as the shell and the current project configuration.
8+ in Elixir, such as the shell and the current project configuration.
99
10- For getting started with Elixir, checkout out the guide available in
10+ For getting started with Elixir, checkout out the guide available on
1111 [Elixir's website](http://elixir-lang.org).
1212 """
1313
@@ -37,7 +37,7 @@ defmodule Mix do
3737
3838 @ doc """
3939 Changes the current mix env. Project configuration loaded
40- per environment is not going to be reloaded.
40+ per environment will not be reloaded.
4141 """
4242 def env ( env ) when is_atom ( env ) do
4343 Mix.Server . cast ( { :env , env } )
@@ -52,7 +52,7 @@ defmodule Mix do
5252 end
5353
5454 @ doc """
55- Starts mix and loads the project and dependencies into
55+ Starts mix and loads the project and dependencies in
5656 one step. Useful when invoking mix from an external tool.
5757 """
5858 def loadpaths do
@@ -64,8 +64,8 @@ defmodule Mix do
6464 The shell is a wrapper for doing IO.
6565
6666 It contains conveniences for asking the user information,
67- printing status and so forth. The fact it is also swappable
68- allow developers to use a test shell, that simply sends the
67+ printing status and so forth. It is also swappable,
68+ allowing developers to use a test shell that simply sends the
6969 messages to the current process.
7070 """
7171 def shell do
@@ -81,9 +81,9 @@ defmodule Mix do
8181
8282 @ doc """
8383 Retrieves the current project configuration. If there
84- isn't a project defined, this function will simply
84+ is not a project defined, this function will
8585 return an empty keyword list. This allows many mix
86- tasks to work without a need for an underlying project.
86+ tasks to work without the need for an underlying project.
8787 """
8888 def project do
8989 Mix.Project . config
0 commit comments