Skip to content

Commit

Permalink
Fix fill-human-multi vector case
Browse files Browse the repository at this point in the history
Incorrectly used `fill` rather than `fill-human` in the implementation
and didn't pass the options either.
  • Loading branch information
dgr committed Oct 8, 2024
1 parent b4f93eb commit 72e3666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etaoin/api.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2867,7 +2867,7 @@
(vector? q-text)
(if (even? (count q-text))
(doseq [[q text] (partition 2 q-text)]
(fill driver q text))
(fill-human driver q text opts))
(throw+ {:type :etaoin/argument
:message "Vector q-text must have even length"
:q-text q-text
Expand Down

0 comments on commit 72e3666

Please sign in to comment.