includes/std: Add some fixes from the WerWolv/Documentation repo (#262)

* Escape backslash in DOSPath docs

* Spelling correction for std\sys.pat

---------

Co-authored-by: Nik <werwolv98@gmail.com>
This commit is contained in:
C3pa
2024-06-22 10:59:36 +02:00
committed by GitHub
parent 2a3de1b705
commit e4c9d86755
2 changed files with 5 additions and 5 deletions

View File

@@ -34,12 +34,12 @@ namespace auto type {
using UnixPath = Path<"/">;
/**
A type representing a DOS path using a '\' backslash as delimeter
A type representing a DOS path using a '\\' backslash as delimeter
*/
using DOSPath = Path<"\\">;
namespace impl {
fn format_path_segment(ref auto segment) {
return segment.string;
};