aboutsummaryrefslogtreecommitdiff
path: root/docs/man
diff options
context:
space:
mode:
authorFred Eisele <phreed@users.noreply.github.com>2018-08-10 05:07:42 -0500
committerGarrett D'Amore <garrett@damore.org>2018-08-11 17:21:47 +0300
commit79e1c3f5a2d96e5893fd5153a4a944d5a704d4ad (patch)
treebc2a1f9a30e6cb7cba2a976d6ed2e463e2d531a6 /docs/man
parentf626b2c520db560fabf716a4bf8a045aba62c7b1 (diff)
downloadnng-79e1c3f5a2d96e5893fd5153a4a944d5a704d4ad.tar.gz
nng-79e1c3f5a2d96e5893fd5153a4a944d5a704d4ad.tar.bz2
nng-79e1c3f5a2d96e5893fd5153a4a944d5a704d4ad.zip
Provide an argument name
Diffstat (limited to 'docs/man')
-rw-r--r--docs/man/nng_http_req_get_uri.3http.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/man/nng_http_req_get_uri.3http.adoc b/docs/man/nng_http_req_get_uri.3http.adoc
index d8b85aa2..a5293b31 100644
--- a/docs/man/nng_http_req_get_uri.3http.adoc
+++ b/docs/man/nng_http_req_get_uri.3http.adoc
@@ -20,13 +20,13 @@ nng_http_req_get_uri - return HTTP request URI
#include <nng/nng.h>
#include <nng/supplemental/http/http.h>
-const char *nng_http_req_get_uri(nng_http_req *);
+const char *nng_http_req_get_uri(nng_http_req *req);
----
== DESCRIPTION
The `nng_http_req_get_uri()` returns the URI (path) associated with the HTTP
-the request _req_.
+request _req_.
The value returned includes the path, as well as any query information or
fragment. The value will look like a file system path
with those optional components appended, such as `/api/get_info.cgi?name=garrett`.