Skip to content

Commit c2736dc

Browse files
Copilotabonie
andcommitted
Fix /// comment in Trimming/Program.fs that was causing build failures
Changed /// to // on line 8265 - this was a regular comment, not XML documentation, and was causing TreatWarningsAsErrors builds to fail. Co-authored-by: abonie <[email protected]>
1 parent c24643d commit c2736dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/AheadOfTime/Trimming/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8262,7 +8262,7 @@ let func7000()=
82628262
test "test7935" (lazy(sprintf "%+0G" -10.0M)) "-10"
82638263
test "test7936" (lazy(sprintf "%+05G" -10.0M)) "-0010"// "00-10"
82648264
test "test7937" (lazy(sprintf "%+01G" -10.0M)) "-10"
8265-
test "test7938" (lazy(sprintf "%+0*G" 7 -10.0M)) "-000010"/// "0000-10"
8265+
test "test7938" (lazy(sprintf "%+0*G" 7 -10.0M)) "-000010"// "0000-10"
82668266
test "test7939" (lazy(sprintf "%+0.5G" -10.0M)) "-10"
82678267
test "test7940" (lazy(sprintf "%+0.*G" 4 -10.0M)) "-10"
82688268
test "test7941" (lazy(sprintf "%+0*.*G" 5 4 -10.0M)) "-0010"// "00-10"

0 commit comments

Comments
 (0)