Skip to content

Commit 467e725

Browse files
Fixup condition for windows argument ordering
1 parent 76663ca commit 467e725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/abbreviations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ function format(::TypedMethodSignatures, buf, doc)
394394
end
395395
end
396396

397-
if Sys.iswindows()
397+
@static if Sys.iswindows() && VERSION < v"1.8"
398398
t = tuples[findlast(f, tuples)]
399399
else
400400
t = tuples[findfirst(f, tuples)]

0 commit comments

Comments
 (0)