From 58e2beb7717cf724ae37e03f2e5bf3afbfc23a35 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Sat, 30 Jun 2018 20:55:44 -0700 Subject: Uri: fix mistakes from last session * Parts of a path are called "segments", not "steps", in the RFC. * The RFC specifies that path separators are always forward slashes, so don't support other separators. --- include/Uri/Uri.hpp | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'include/Uri') diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index 6103bff..fb1e5c8 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -35,16 +35,6 @@ namespace Uri { */ Uri(); - /** - * This method sets the character or character sequence - * that should be interpreted as a path delimiter. - * - * @param[in] newPathDelimiter - * This is the character or character sequence - * that should be interpreted as a path delimiter. - */ - void SetPathDelimiter(const std::string& newPathDelimiter); - /** * This method builds the URI from the elements parsed * from the given string rendering of a URI. @@ -82,15 +72,15 @@ namespace Uri { /** * This method returns the "path" element of the URI, - * as a sequence of steps. + * as a sequence of segments. * * @note - * If the first step of the path is an empty string, + * If the first segment of the path is an empty string, * then the URI has an absolute path. * * @return * The "path" element of the URI is returned - * as a sequence of steps. + * as a sequence of segments. */ std::vector< std::string > GetPath() const; -- cgit v1.2.3