summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/proxy/proxy_server.h')
-rw-r--r--net/proxy/proxy_server.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/net/proxy/proxy_server.h b/net/proxy/proxy_server.h
index d7a94f0..6992e3e 100644
--- a/net/proxy/proxy_server.h
+++ b/net/proxy/proxy_server.h
@@ -73,7 +73,7 @@ class ProxyServer {
// |port_| here.
HostPortPair host_port_pair() const;
- // Parse from an input with format:
+ // Parses from an input with format:
// [<scheme>"://"]<server>[":"<port>]
//
// Both <scheme> and <port> are optional. If <scheme> is omitted, it will be
@@ -94,7 +94,7 @@ class ProxyServer {
std::string::const_iterator uri_end,
Scheme default_scheme);
- // Format as a URI string. This does the reverse of FromURI.
+ // Formats as a URI string. This does the reverse of FromURI.
std::string ToURI() const;
// Parses from a PAC string result.
@@ -130,8 +130,7 @@ class ProxyServer {
CFStringRef port_key);
#endif
-
- // Format as a PAC result entry. This does the reverse of FromPacString().
+ // Formats as a PAC result entry. This does the reverse of FromPacString().
std::string ToPacString() const;
// Returns the default port number for a proxy server with the specified
@@ -145,7 +144,7 @@ class ProxyServer {
}
private:
- // Create a ProxyServer given a scheme, and host/port string. If parsing the
+ // Creates a ProxyServer given a scheme, and host/port string. If parsing the
// host/port string fails, the returned instance will be invalid.
static ProxyServer FromSchemeHostAndPort(
Scheme scheme,