Skip to content

Commit 7351d58

Browse files
committed
fix typo
1 parent 224e323 commit 7351d58

File tree

17 files changed

+36
-33
lines changed

17 files changed

+36
-33
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## files generated by popular Visual Studio add-ons.
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5-
5+
.DS_Store
66
# User-specific files
77
*.suo
88
*.user
@@ -303,4 +303,4 @@ pom.xml.asc
303303
.lein-plugins/
304304
.lein-failures
305305
.nrepl-port
306-
.cpcache/
306+
.cpcache/
File renamed without changes.
File renamed without changes.

clojure/resultful-crud/CHANGELOG.md renamed to clojure/restful-crud/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ All notable changes to this project will be documented in this file. This change
2020
- Files from the new template.
2121
- Widget maker public API - `make-widget-sync`.
2222

23-
[Unreleased]: https://github.com/your-name/resultful-crud/compare/0.1.1...HEAD
24-
[0.1.1]: https://github.com/your-name/resultful-crud/compare/0.1.0...0.1.1
23+
[Unreleased]: https://github.com/your-name/restful-crud/compare/0.1.1...HEAD
24+
[0.1.1]: https://github.com/your-name/restful-crud/compare/0.1.0...0.1.1
File renamed without changes.

clojure/resultful-crud/README.md renamed to clojure/restful-crud/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# resultful-crud
1+
# restful-crud
22

33
FIXME: description
44

@@ -10,7 +10,7 @@ Download from http://example.com/FIXME.
1010

1111
FIXME: explanation
1212

13-
$ java -jar resultful-crud-0.1.0-standalone.jar [args]
13+
$ java -jar restful-crud-0.1.0-standalone.jar [args]
1414

1515
## Options
1616

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Introduction to resultful-crud
1+
# Introduction to restful-crud
22

33
TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)

clojure/resultful-crud/project.clj renamed to clojure/restful-crud/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject resultful-crud "0.1.0-SNAPSHOT"
1+
(defproject restful-crud "0.1.0-SNAPSHOT"
22
:description "FIXME: write description"
33
:url "http://example.com/FIXME"
44
:license {:name "Eclipse Public License"
@@ -16,6 +16,6 @@
1616

1717
; Password Hashing
1818
[buddy/buddy-hashers "1.3.0"]]
19-
:main ^:skip-aot resultful-crud.core
19+
:main ^:skip-aot restful-crud.core
2020
:target-path "target/%s"
2121
:profiles {:uberjar {:aot :all}})
File renamed without changes.

clojure/resultful-crud/src/resultful_crud/book.clj renamed to clojure/restful-crud/src/restful_crud/book.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
(ns resultful-crud.book
1+
(ns restful-crud.book
22
(:require [schema.core :as s]
3-
[resultful-crud.models.book :refer [Book]]
3+
[restful-crud.models.book :refer [Book]]
44
[toucan.db :as db]
5-
[resultful-crud.restful :as restful]
5+
[restful-crud.restful :as restful]
66
[ring.util.http-response :refer [ok not-found created]]
77
[compojure.api.sweet :refer [GET POST PUT DELETE]]
8-
[resultful-crud.string-util :as str]))
8+
[restful-crud.string-util :as str]))
99

1010
(defn valid-book-title? [title]
1111
(str/non-blank-with-max-length? 100 title))

0 commit comments

Comments
 (0)