Skip to content

Commit 56c5a0c

Browse files
committed
Address #1591 - remove _ behavior of docstring format
1 parent f3ad13c commit 56c5a0c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/boot/boot.janet

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
``Define an alias for a keyword that is used as a dynamic binding. The
159159
alias is a normal, lexically scoped binding that can be used instead of
160160
a keyword to prevent typos. `defdyn` does not set dynamic bindings or otherwise
161-
replace `dyn` and `setdyn`. The alias _must_ start and end with the `*` character, usually
161+
replace `dyn` and `setdyn`. The alias *must* start and end with the `*` character, usually
162162
called "earmuffs".``
163163
[alias & more]
164164
(assert (symbol? alias) "alias must be a symbol")
@@ -3384,7 +3384,6 @@
33843384
(= b (chr `\`)) (do
33853385
(++ token-length)
33863386
(buffer/push token (get line (++ i))))
3387-
(= b (chr "_")) (delim :underline)
33883387
(= b (chr "*"))
33893388
(if (= (chr "*") (get line (+ i 1)))
33903389
(do (++ i)

0 commit comments

Comments
 (0)