Skip to content

Commit 5c4e553

Browse files
author
Henrique Azevedo
committed
Fix: removed forward slash at the end of path
1 parent da8431f commit 5c4e553

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)