From 5446464d7eecb1e90c0c0cb7e2bf525354d5b495 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 6 Feb 2025 13:25:55 +0100 Subject: [PATCH] :paperclip: Add fixme comment for confusing name --- common/src/app/common/types/tokens_lib.cljc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/types/tokens_lib.cljc b/common/src/app/common/types/tokens_lib.cljc index dade7bf818..39c4c6b9ce 100644 --- a/common/src/app/common/types/tokens_lib.cljc +++ b/common/src/app/common/types/tokens_lib.cljc @@ -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])