(strr/format "%(foo) is the word" {:foo "bird"})
-> (strr/format "%(foo)s is the word" {:foo "bird"})
The s
is missing on first form
oh, the trailing s
is required? I thought that was a simply something to be included in the string interpolation, for say pluralizing
ok cool, thanks