Skip to content

Commit

Permalink
Fix some typos (#188)
Browse files Browse the repository at this point in the history
Automated with:

`codespell src -L juxt,edn,anser`
  • Loading branch information
dakra authored Jul 21, 2023
1 parent a2a7332 commit 13f408a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/examples/data.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
::atom (atom ::hello)
::function println
(with-meta 'symbol-key-with-meta {:a :b}) ::value
;;TODO: fix me, causes infininte loop in demo
;;TODO: fix me, causes infinite loop in demo
;;::range (range)
::record #?(:bb {:x 0 :y 0} :default (->Point 0 0))})

Expand Down
2 changes: 1 addition & 1 deletion src/portal/api.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
(flush))))

(defn eval-str
"Evalute ClojureScript source given as a string in the UI runtime. The parameters:
"Evaluate ClojureScript source given as a string in the UI runtime. The parameters:
- portal: portal instance returned from `portal.api/open` or `:all`
- code (string): the ClojureScript source
Expand Down
2 changes: 1 addition & 1 deletion src/portal/ui/inspector.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
children))

(defn- get-stable-path
"Since seqs grow at the front, reverse indexing them will yeild a more stable
"Since seqs grow at the front, reverse indexing them will yield a more stable
path."
[context k]
(let [{:keys [collection stable-path] :or {stable-path []}} context]
Expand Down
2 changes: 1 addition & 1 deletion src/portal/web.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
nil)

(defn eval-str
"Evalute ClojureScript source given as a string in the UI runtime."
"Evaluate ClojureScript source given as a string in the UI runtime."
{:added "0.19.0"}
([code]
(eval-str :all code nil))
Expand Down

0 comments on commit 13f408a

Please sign in to comment.