@@ -45,48 +45,48 @@ struct url : url_base {
4545
4646 /* *
4747 * @private
48- * A URL’ s username is an ASCII string identifying a username. It is initially
48+ * A URL' s username is an ASCII string identifying a username. It is initially
4949 * the empty string.
5050 */
5151 std::string username{};
5252
5353 /* *
5454 * @private
55- * A URL’ s password is an ASCII string identifying a password. It is initially
55+ * A URL' s password is an ASCII string identifying a password. It is initially
5656 * the empty string.
5757 */
5858 std::string password{};
5959
6060 /* *
6161 * @private
62- * A URL’ s host is null or a host. It is initially null.
62+ * A URL' s host is null or a host. It is initially null.
6363 */
6464 std::optional<std::string> host{};
6565
6666 /* *
6767 * @private
68- * A URL’ s port is either null or a 16-bit unsigned integer that identifies a
68+ * A URL' s port is either null or a 16-bit unsigned integer that identifies a
6969 * networking port. It is initially null.
7070 */
7171 std::optional<uint16_t > port{};
7272
7373 /* *
7474 * @private
75- * A URL’ s path is either an ASCII string or a list of zero or more ASCII
75+ * A URL' s path is either an ASCII string or a list of zero or more ASCII
7676 * strings, usually identifying a location.
7777 */
7878 std::string path{};
7979
8080 /* *
8181 * @private
82- * A URL’ s query is either null or an ASCII string. It is initially null.
82+ * A URL' s query is either null or an ASCII string. It is initially null.
8383 */
8484 std::optional<std::string> query{};
8585
8686 /* *
8787 * @private
88- * A URL’ s fragment is either null or an ASCII string that can be used for
89- * further processing on the resource the URL’ s other components identify. It
88+ * A URL' s fragment is either null or an ASCII string that can be used for
89+ * further processing on the resource the URL' s other components identify. It
9090 * is initially null.
9191 */
9292 std::optional<std::string> hash{};
@@ -111,23 +111,23 @@ struct url : url_base {
111111 [[nodiscard]] ada_really_inline std::string get_href () const noexcept ;
112112
113113 /* *
114- * The origin getter steps are to return the serialization of this’ s URL’ s
114+ * The origin getter steps are to return the serialization of this' s URL' s
115115 * origin. [HTML]
116116 * @return a newly allocated string.
117117 * @see https://url.spec.whatwg.org/#concept-url-origin
118118 */
119119 [[nodiscard]] std::string get_origin () const noexcept override ;
120120
121121 /* *
122- * The protocol getter steps are to return this’ s URL’ s scheme, followed by
122+ * The protocol getter steps are to return this' s URL' s scheme, followed by
123123 * U+003A (:).
124124 * @return a newly allocated string.
125125 * @see https://url.spec.whatwg.org/#dom-url-protocol
126126 */
127127 [[nodiscard]] std::string get_protocol () const noexcept ;
128128
129129 /* *
130- * Return url’ s host, serialized, followed by U+003A (:) and url’ s port,
130+ * Return url' s host, serialized, followed by U+003A (:) and url' s port,
131131 * serialized.
132132 * When there is no host, this function returns the empty string.
133133 * @return a newly allocated string.
@@ -136,7 +136,7 @@ struct url : url_base {
136136 [[nodiscard]] std::string get_host () const noexcept ;
137137
138138 /* *
139- * Return this’ s URL’ s host, serialized.
139+ * Return this' s URL' s host, serialized.
140140 * When there is no host, this function returns the empty string.
141141 * @return a newly allocated string.
142142 * @see https://url.spec.whatwg.org/#dom-url-hostname
@@ -145,7 +145,7 @@ struct url : url_base {
145145
146146 /* *
147147 * The pathname getter steps are to return the result of URL path serializing
148- * this’ s URL.
148+ * this' s URL.
149149 * @return a newly allocated string.
150150 * @see https://url.spec.whatwg.org/#dom-url-pathname
151151 */
@@ -160,14 +160,14 @@ struct url : url_base {
160160 ada_really_inline size_t get_pathname_length () const noexcept ;
161161
162162 /* *
163- * Return U+003F (?), followed by this’ s URL’ s query.
163+ * Return U+003F (?), followed by this' s URL' s query.
164164 * @return a newly allocated string.
165165 * @see https://url.spec.whatwg.org/#dom-url-search
166166 */
167167 [[nodiscard]] std::string get_search () const noexcept ;
168168
169169 /* *
170- * The username getter steps are to return this’ s URL’ s username.
170+ * The username getter steps are to return this' s URL' s username.
171171 * @return a constant reference to the underlying string.
172172 * @see https://url.spec.whatwg.org/#dom-url-username
173173 */
@@ -233,21 +233,21 @@ struct url : url_base {
233233 bool set_href (const std::string_view input);
234234
235235 /* *
236- * The password getter steps are to return this’ s URL’ s password.
236+ * The password getter steps are to return this' s URL' s password.
237237 * @return a constant reference to the underlying string.
238238 * @see https://url.spec.whatwg.org/#dom-url-password
239239 */
240240 [[nodiscard]] const std::string &get_password () const noexcept ;
241241
242242 /* *
243- * Return this’ s URL’ s port, serialized.
243+ * Return this' s URL' s port, serialized.
244244 * @return a newly constructed string representing the port.
245245 * @see https://url.spec.whatwg.org/#dom-url-port
246246 */
247247 [[nodiscard]] std::string get_port () const noexcept ;
248248
249249 /* *
250- * Return U+0023 (#), followed by this’ s URL’ s fragment.
250+ * Return U+0023 (#), followed by this' s URL' s fragment.
251251 * @return a newly constructed string representing the hash.
252252 * @see https://url.spec.whatwg.org/#dom-url-hash
253253 */
@@ -333,7 +333,7 @@ struct url : url_base {
333333 [[nodiscard]] bool parse_opaque_host (std::string_view input);
334334
335335 /* *
336- * A URL’ s scheme is an ASCII string that identifies the type of URL and can
336+ * A URL' s scheme is an ASCII string that identifies the type of URL and can
337337 * be used to dispatch a URL for further processing after parsing. It is
338338 * initially the empty string. We only set non_special_scheme when the scheme
339339 * is non-special, otherwise we avoid constructing string.
0 commit comments