1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-20 07:34:49 +00:00

Formatting cleanup.

This commit is contained in:
Calvin Rose 2022-02-24 18:07:22 -06:00
parent 408b03ae0d
commit 56ba1d9cd3
2 changed files with 5 additions and 5 deletions

View File

@ -341,8 +341,8 @@ JANET_CORE_FN(janet_core_describe,
"(describe x)", "(describe x)",
"Returns a string that is a human-readable description of `x`. " "Returns a string that is a human-readable description of `x`. "
"For recursive data structures, the string returned contains a " "For recursive data structures, the string returned contains a "
"more or less unique pointer value from which the identity of `x` " "pointer value from which the identity of `x` "
"could be determined.") { "can be determined.") {
JanetBuffer *b = janet_buffer(0); JanetBuffer *b = janet_buffer(0);
for (int32_t i = 0; i < argc; ++i) for (int32_t i = 0; i < argc; ++i)
janet_description_b(b, argv[i]); janet_description_b(b, argv[i]);