diff options
author | Andrea Ferretti <ferrettiandrea@gmail.com> | 2016-09-22 11:54:59 +0200 |
---|---|---|
committer | Andrea Ferretti <ferrettiandrea@gmail.com> | 2016-09-22 11:54:59 +0200 |
commit | 4ee4393556388ee0ecf8ec395eb2d9c4ca097bf4 (patch) | |
tree | c4d3187ef8a94f4c8e693457c170e16261ba7d24 | |
parent | 91f6784d0ff5b138bd099d308acaf6ab9145225a (diff) | |
download | Nim-4ee4393556388ee0ecf8ec395eb2d9c4ca097bf4.tar.gz |
Fixed missing comma
-rw-r--r-- | lib/pure/httpcore.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/httpcore.nim b/lib/pure/httpcore.nim index 878959ccf..0515eeecd 100644 --- a/lib/pure/httpcore.nim +++ b/lib/pure/httpcore.nim @@ -41,7 +41,7 @@ type ## changing in the request. HttpOptions, ## Returns the HTTP methods that the server supports ## for specified address. - HttpConnect ## Converts the request connection to a transparent + HttpConnect, ## Converts the request connection to a transparent ## TCP/IP tunnel, usually used for proxies. HttpPatch ## Added in RFC 5789. Can be used to update partial ## resources. The set of changes is represented in a |