Skip to content

Commit ea89c54

Browse files
Fix missing forward slashes in Unix Snippet4 System.IO.Path.Combine(String, String, String, String) (#11516)
1 parent a150563 commit ea89c54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

snippets/csharp/System.IO/Path/Combine/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private static void Combine4()
7676
// C:\Pictures\Saved Pictures\2019\Jan\
7777
//
7878
// The example displays the following output if run on a Unix-based system:
79-
// C:\Pictures\Saved Pictures\2019\Jan\
79+
// C:\Pictures\/Saved Pictures\/2019\/Jan\
8080
// </Snippet4>
8181
}
8282
}

snippets/visualbasic/api/system.io/path/combine/Program.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Module Program
7272
' C:\Pictures\Saved Pictures\2019\Jan\
7373
'
7474
' The example displays the following output if run on a Unix-based system:
75-
' C:\Pictures\Saved Pictures\2019\Jan\
75+
' C:\Pictures\/Saved Pictures\/2019\/Jan\
7676
' </Snippet4>
7777
End Sub
7878
End Module

0 commit comments

Comments
 (0)