Merge pull request #1023 from sergv/typo-fixes

Fix some typos
This commit is contained in:
Michael Klishin 2013-02-21 13:09:44 -08:00
commit fbf9401328
3 changed files with 5 additions and 5 deletions

View file

@ -39,7 +39,7 @@ that you don't want committed in version control.
Global profiles can also be specified in `~/.lein/profiles.clj` and in
`clj`-files within `~/.lein/profiles.d`. These will be available in all projects
managed by Leiningen, though those profiles will be overridden by profiles of
the same name in the specified in the project. Defining the same global profile
the same name specified in the project. Defining the same global profile
in multiple different files is considered an error.
The `:user` profile is separate from `:dev`; the latter is intended to be

View file

@ -112,7 +112,7 @@ the scope of this tutorial you can
## project.clj
Your `project.clj` file will start off looking something like the this:
Your `project.clj` file will start off looking something like this:
```clj
(defproject my-stuff "0.1.0-SNAPSHOT"

View file

@ -45,13 +45,13 @@
(cond
(and (re-find #"(?i)(?<!(clo|compo))jure" name)
(not (System/getenv "LEIN_IRONIC_JURE")))
(log/abort
(log/abort
"Sorry, names based on non-ironic *jure puns are not allowed.\n"
"If you intend to use this name ironically, please set the"
"LEIN_IRONIC_JURE environment variable and try again.")
(and (re-find #"[A-Z]" name)
(not (System/getenv "LEIN_BREAK_CONVENTION")))
(log/abort
(log/abort
"Project names containing uppercase letters are not recommended"
"and will be rejected by repositories like Clojars and Central.\n"
"If you're truly unable to use a lowercase name, please set the"
@ -118,7 +118,7 @@ party template --- lein will automatically fetch it for you.
Use `lein new $TEMPLATE :show` to see details about a given template.
To create a new template of your own, see the documentation for the
lein-newnew Leiningin plug-in."
lein-new Leiningen plug-in."
[project & args]
(binding [*project* project]