Skip to content

Commit

Permalink
doc formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Oct 18, 2023
1 parent 4c6f1e2 commit d8fd387
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/resources/com/github/jlangch/venice/jsonl.venice
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,14 @@
string. Defaults to false |
"""
:examples '(
"(println (jsonl/write-str {:a 100 :b 200}))"
"(println (jsonl/write-str [{:a 100 :b 200} {:a 101 :b 201} {:a 102 :b 202}]))" )
"""
(println (jsonl/write-str {:a 100 :b 200}))
""",
"""
(println (jsonl/write-str [{:a 100 :b 200}
{:a 101 :b 201}
{:a 102 :b 202}]))
""" )
:see-also '("jsonl/spit" "jsonl/read-str") }

write-str [val & options]
Expand Down

0 comments on commit d8fd387

Please sign in to comment.