aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2019-09-23 11:31:23 +0300
committerGitHub <noreply@github.com>2019-09-23 11:31:23 +0300
commit5371816480fd106f6d0b6152ac69c70b6cac25e7 (patch)
tree00b0a6a89a53167af75c79f741348081895c43e3 /doc
parent09e455275c4cca293fa0f3c9d1645c0ce76fa693 (diff)
parent3adf3e6a5acda08e941acbdff744940d94e07ade (diff)
downloadjansson-5371816480fd106f6d0b6152ac69c70b6cac25e7.zip
jansson-5371816480fd106f6d0b6152ac69c70b6cac25e7.tar.gz
jansson-5371816480fd106f6d0b6152ac69c70b6cac25e7.tar.bz2
Merge pull request #494 from luzpaz/typos
Fix various typos
Diffstat (limited to 'doc')
-rw-r--r--doc/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.rst b/doc/tutorial.rst
index 56861c2..bb7a6c2 100644
--- a/doc/tutorial.rst
+++ b/doc/tutorial.rst
@@ -74,7 +74,7 @@ function::
static char *request(const char *url);
-It takes the URL as a parameter, preforms a HTTP GET request, and
+It takes the URL as a parameter, performs a HTTP GET request, and
returns a newly allocated string that contains the response body. If
the request fails, an error message is printed to stderr and the
return value is *NULL*. For full details, refer to :download:`the code