From 9615ed1d5a790b878ad892deeef971bab4501819 Mon Sep 17 00:00:00 2001 From: Geod24 Date: Tue, 17 Dec 2019 17:12:56 +0900 Subject: [PATCH] Fix documentation warning on parameter --- source/vibe/core/path.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vibe/core/path.d b/source/vibe/core/path.d index 2fc4111..1c4acad 100644 --- a/source/vibe/core/path.d +++ b/source/vibe/core/path.d @@ -423,7 +423,7 @@ struct GenericPath(F) { that verify that the provided values are valid. Params: - name = The encoded name of the path segment + encoded_name = The encoded name of the path segment separator = Optional trailing path separator (e.g. `'/'`) */ static Segment2 fromTrustedEncodedString(string encoded_name, char separator = '\0')