From 08d0cdfd3157ec338c53add808ec07d315fea2ed Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 4 Mar 2015 02:48:20 +0900 Subject: [PATCH] Fix typo --- src/http2.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/http2.h b/src/http2.h index 5e9b3565..067a2f9b 100644 --- a/src/http2.h +++ b/src/http2.h @@ -274,9 +274,9 @@ std::vector parse_link_header(const char *src, size_t len); // Constructs path by combining base path |base_path| of length // |base_pathlen| with another path |rel_path| of length // |rel_pathlen|. The base path and another path can have optional -// query component. This function assumes |base_path| is -// cannibalized. In other words, it does not contain ".." or "." path -// components and starts with "/" if it is not empty. +// query component. This function assumes |base_path| is normalized. +// In other words, it does not contain ".." or "." path components +// and starts with "/" if it is not empty. std::string path_join(const char *base_path, size_t base_pathlen, const char *base_query, size_t base_querylen, const char *rel_path, size_t rel_pathlen,