File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ simplifications include:
199
199
* no `TypeVar`s;
200
200
* no types;
201
201
* no keyword default values;
202
- * `? ` printed where `#unused#` arguments are found.
202
+ * `_ ` printed where `#unused#` arguments are found.
203
203
204
204
# Examples
205
205
@@ -278,7 +278,6 @@ simplifications include:
278
278
* no `TypeVar`s;
279
279
* no types;
280
280
* no keyword default values;
281
- * `?` printed where `#unused#` arguments are found.
282
281
283
282
# Examples
284
283
@@ -369,7 +368,7 @@ function arguments(m::Method)
369
368
local template = get_method_source (m)
370
369
if isdefined (template, :slotnames )
371
370
local args = map (template. slotnames[1 : nargs (m)]) do arg
372
- arg === Symbol (" #unused#" ) ? " ? " : arg
371
+ arg === Symbol (" #unused#" ) ? " _ " : arg
373
372
end
374
373
return filter (arg -> arg != = Symbol (" #self#" ), args)
375
374
end
Original file line number Diff line number Diff line change 174
174
DSE. format (SIGNATURES, buf, doc)
175
175
str = String (take! (buf))
176
176
@test occursin (" \n ```julia\n " , str)
177
- @test occursin (" \n h_4(x, ? , z)\n " , str)
177
+ @test occursin (" \n h_4(x, _ , z)\n " , str)
178
178
@test occursin (" \n ```\n " , str)
179
179
end
180
180
You can’t perform that action at this time.
0 commit comments