aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-09-20 13:35:56 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2019-09-20 13:35:56 -0400
commit3adf3e6a5acda08e941acbdff744940d94e07ade (patch)
tree81a827d5813183e7cbb16a65774855b091920f6a /doc
parenta1f297aa8331d00e198661d33dcbf585b4c48a80 (diff)
downloadjansson-3adf3e6a5acda08e941acbdff744940d94e07ade.zip
jansson-3adf3e6a5acda08e941acbdff744940d94e07ade.tar.gz
jansson-3adf3e6a5acda08e941acbdff744940d94e07ade.tar.bz2
Fix various typos
Found via `codespell -q 2` (v1.17.0.dev0)
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