Skip to content

Commit

Permalink
fix: only use first line from action description
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Oct 5, 2024
1 parent 6977a7a commit 2692c68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/cy/boot/actions.janet
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ For example:
(get x :sequence)
(string/join x " ")
(string " " x " ")))
(tuple [desc name (string sequence)] func))
(tuple [(get (string/split "\n" desc) 0)
name
(string sequence)] func))
(pairs actions)))

(as?-> bound-actions _
Expand Down

0 comments on commit 2692c68

Please sign in to comment.