diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-19 23:11:29 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-19 23:11:29 -0800 |
commit | 8db2a88623b57ea0c9e5ec7cbe17bce9f4f6ffab (patch) | |
tree | 508ea99bbb3e4cf9124433c0440a033d4ccfec42 | |
parent | 0ec56f3c9ac85b97e4785c83cc1bb9412900faba (diff) |
fixing typo in readme and usage
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | cmd/ponzu/main.go | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -26,7 +26,7 @@ COMMANDS new <directory>: - Creates a 'ponzu' directorty, or one by the name supplied as a parameter + Creates a 'ponzu' directory, or one by the name supplied as a parameter immediately following the 'new' option in the $GOPATH/src directory. Note: 'new' depends on the program 'git' and possibly a network connection. If there is no local repository to clone from at the local machine's $GOPATH, @@ -103,7 +103,7 @@ build Note: Admin and API cannot run on separate processes unless you use a copy of the - database, since the first process to open it recieves a lock. If you intend + database, since the first process to open it receives a lock. If you intend to run the Admin and API on separate processes, you must call them with the 'ponzu' command independently. diff --git a/cmd/ponzu/main.go b/cmd/ponzu/main.go index 13c4edd..1e037a1 100644 --- a/cmd/ponzu/main.go +++ b/cmd/ponzu/main.go @@ -53,7 +53,7 @@ help, h (command): var usageNew = ` new <directory>: - Creates a 'ponzu' directorty, or one by the name supplied as a parameter + Creates a 'ponzu' directory, or one by the name supplied as a parameter immediately following the 'new' option in the $GOPATH/src directory. Note: 'new' depends on the program 'git' and possibly a network connection. If there is no local repository to clone from at the local machine's $GOPATH, @@ -136,7 +136,7 @@ var usageRun = ` Note: Admin and API cannot run on separate processes unless you use a copy of the - database, since the first process to open it recieves a lock. If you intend + database, since the first process to open it receives a lock. If you intend to run the Admin and API on separate processes, you must call them with the 'ponzu' command independently. |