0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-23 15:26:29 -05:00

📎 Add fixme comment for confusing name

This commit is contained in:
Andrey Antukh 2025-02-06 13:25:55 +01:00
parent baa5258a43
commit 5446464d7e

View file

@ -106,7 +106,10 @@
(defn get-token-path [path]
(get-path path token-separator))
(defn split-token-path [path]
;; FIXME: misleading name, we are spliting name into path, not
;; spliting path into path
(defn split-token-path
[path]
(split-path path token-separator))
(defrecord Token [name type value description modified-at])