Skip to content

Commit

Permalink
Swap branches for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
eerohele committed Feb 23, 2024
1 parent 5aadf6b commit 82dcbf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clojure/src/tutkain/completions.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -652,9 +652,9 @@
start-line
start-column)))]
(let [context-completions (context-completions (peek forms) prefix line column)]
(if (not (identical? ::none context-completions))
context-completions
(into (local-completions forms message) (candidates prefix ns))))))
(if (identical? ::none context-completions)
(into (local-completions forms message) (candidates prefix ns))
context-completions))))

(defmethod completions :default
[message]
Expand Down

0 comments on commit 82dcbf4

Please sign in to comment.