Skip to content

Commit a252dcd

Browse files
committed
Format
1 parent 9d39cb6 commit a252dcd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/ada/implementation.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ using result = tl::expected<result_type, ada::errors>;
2424

2525
/**
2626
* The URL parser takes a scalar value string input, with an optional null or
27-
* base URL base (default null). The parser assumes the input is a valid ASCII or UTF-8
28-
* string.
27+
* base URL base (default null). The parser assumes the input is a valid ASCII
28+
* or UTF-8 string.
2929
*
3030
* @param input the string input to analyze (must be valid ASCII or UTF-8)
3131
* @param base_url the optional URL input to use as a base url.
@@ -41,7 +41,7 @@ extern template ada::result<url_aggregator> parse<url_aggregator>(
4141
std::string_view input, const url_aggregator* base_url);
4242

4343
/**
44-
* Verifies whether the URL strings can be parsed. The function assumes
44+
* Verifies whether the URL strings can be parsed. The function assumes
4545
* that the inputs are valid ASCII or UTF-8 strings.
4646
* @see https://url.spec.whatwg.org/#dom-url-canparse
4747
* @return If URL can be parsed or not.
@@ -50,7 +50,7 @@ bool can_parse(std::string_view input,
5050
const std::string_view* base_input = nullptr);
5151

5252
/**
53-
* Computes a href string from a file path. The function assumes
53+
* Computes a href string from a file path. The function assumes
5454
* that the input is a valid ASCII or UTF-8 string.
5555
* @return a href string (starts with file:://)
5656
*/

0 commit comments

Comments
 (0)