diff options
author | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-25 11:48:10 +0200 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@gmail.com> | 2016-09-25 11:48:10 +0200 |
commit | 9753fb064f28e35325fbf5b032561c086925c94b (patch) | |
tree | 7ee85dbfd2c65aa61d276eea87dce4f36a224c81 /lib/pure | |
parent | 26c7a76c8a42b611b0e222652c73ebeddb007f82 (diff) | |
download | Nim-9753fb064f28e35325fbf5b032561c086925c94b.tar.gz |
Add PATCH HTTP Method.
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/httpcore.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/pure/httpcore.nim b/lib/pure/httpcore.nim index 1fded8248..8147f1c50 100644 --- a/lib/pure/httpcore.nim +++ b/lib/pure/httpcore.nim @@ -43,9 +43,8 @@ type ## for specified address. 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 - ## format called a "patch document". + HttpPatch ## Applies partial modifications to a resource. + {.deprecated: [httpGet: HttpGet, httpHead: HttpHead, httpPost: HttpPost, httpPut: HttpPut, httpDelete: HttpDelete, httpTrace: HttpTrace, httpOptions: HttpOptions, httpConnect: HttpConnect].} |