Skip to content

Commit 736182f

Browse files
danielzunckedlang-bot
authored andcommitted
Missing space
See table row 3 first column in docs is a >b: https://dlang.org/spec/operatoroverloading.html#compare I don't know the doc-gen but the space now matches the first row for a < b (4 lines above in this source file); currently: $(D a) $(D <) $(D b) -> (a < b) vs $(D a) $(D >)$(D b) -> (a >b)
1 parent fb3b206 commit 736182f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/operatoroverloading.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ $(H3 $(LNAME2 compare, Overloading $(D <), $(D <)$(D =), $(D >), and $(D >)$(D =
477477
$(D 0), $(ARGS $(D b.opCmp(a)) $(D >) $(D 0)))
478478
$(TROW $(D a) $(D <)$(D= b), $(ARGS $(D a.opCmp(b))
479479
$(D <)$(D= 0)), $(ARGS $(D b.opCmp(a)) $(D >)$(D = 0)))
480-
$(TROW $(D a) $(D >)$(D b), $(ARGS $(D a.opCmp(b))
480+
$(TROW $(D a) $(D >) $(D b), $(ARGS $(D a.opCmp(b))
481481
$(D >) $(D 0)), $(ARGS $(D b.opCmp(a)) $(D <) $(D 0)))
482482
$(TROW $(D a) $(D >)$(D = b), $(ARGS $(D a.opCmp(b))
483483
$(D >)$(D = 0)), $(ARGS $(D b.opCmp(a)) $(D <)$(D= 0)))

0 commit comments

Comments
 (0)