Răsfoiți Sursa

chore: fix typo

rcmerci 1 an în urmă
părinte
comite
30e76a4493
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/main/frontend/worker/undo_redo.cljs

+ 2 - 2
src/main/frontend/worker/undo_redo.cljs

@@ -258,7 +258,7 @@ when undo this op, this original entity-map will be transacted back into db")
               (conj! redo-ops-to-push rev-op)))))
               (conj! redo-ops-to-push rev-op)))))
       (when-let [rev-ops (not-empty (persistent! redo-ops-to-push))]
       (when-let [rev-ops (not-empty (persistent! redo-ops-to-push))]
         (push-redo-ops repo (cons boundary rev-ops))))
         (push-redo-ops repo (cons boundary rev-ops))))
-    (prn "No further undo infomation")))
+    (prn "No further undo information")))
 
 
 (defn redo
 (defn redo
   [repo]
   [repo]
@@ -272,7 +272,7 @@ when undo this op, this original entity-map will be transacted back into db")
               (conj! undo-ops-to-push rev-op)))))
               (conj! undo-ops-to-push rev-op)))))
       (when-let [rev-ops (not-empty (persistent! undo-ops-to-push))]
       (when-let [rev-ops (not-empty (persistent! undo-ops-to-push))]
         (push-undo-ops repo (cons boundary rev-ops))))
         (push-undo-ops repo (cons boundary rev-ops))))
-    (prn "No further redo infomation")))
+    (prn "No further redo information")))
 
 
 
 
 ;;; listen db changes and push undo-ops
 ;;; listen db changes and push undo-ops