Skip to content

Commit ed28140

Browse files
author
Yannick Scherer
committed
fix whitespace.
1 parent 4d2bc9e commit ed28140

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/rewrite_clj/zip/core.clj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(ns ^{ :doc "Base Operations for Zipper"
1+
(ns ^{ :doc "Base Operations for Zipper"
22
:author "Yannick Scherer" }
33
rewrite-clj.zip.core
44
(:require [fast-zip.core :as z]
@@ -23,7 +23,7 @@
2323

2424
(def edn
2525
"Create zipper over rewrite-clj's EDN tree structure. The returned zipper location will
26-
be the first non-whitespace node _inside_ a top-level `:forms` node. If the given tree
26+
be the first non-whitespace node _inside_ a top-level `:forms` node. If the given tree
2727
is not a `:forms` node, it will be wrapped in one."
2828
(fn [tree]
2929
(skip-whitespace
@@ -160,7 +160,7 @@
160160
path)))
161161

162162
(defn edit-node
163-
"Apply given function to the given zipper location. Afterwards move the resulting
163+
"Apply given function to the given zipper location. Afterwards move the resulting
164164
zipper to the same location as the original one."
165165
[zloc f]
166166
(if-let [eloc (f zloc)]
@@ -179,7 +179,7 @@
179179

180180
(defmacro edit->
181181
"Will pass arguments to `->`. Return value will be the state of the input node
182-
after all modifications have been performed. This means that the result is
182+
after all modifications have been performed. This means that the result is
183183
automatically 'zipped up' to represent the same location the macro was given.
184184
This only works correctly if insertions/removals are limited to nodes below or right
185185
of the input node (modification can occur anywhere)."
@@ -189,7 +189,7 @@
189189

190190
(defmacro edit->>
191191
"Will pass arguments to `->>`. Return value will be the state of the input node
192-
after all modifications have been performed. This means that the result is
192+
after all modifications have been performed. This means that the result is
193193
automatically 'zipped up' to represent the same location the macro was given.
194194
This only works correctly if insertions/removals are limited to nodes below or right
195195
of the input node (modification can occur anywhere)."

0 commit comments

Comments
 (0)