summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesus Fernandez <jesus.fernandez@qt.io>2017-05-16 09:45:35 +0200
committerJesus Fernandez <Jesus.Fernandez@qt.io>2017-05-18 10:27:33 +0000
commit4d2abb3436d645a42991a8435555fec9e5473134 (patch)
tree6153286d813a2897d84401d8ff31d6dd6eda6b06
parent74954febbe60a6d30115e4169ce675b856596bad (diff)
s/Posts/Sends/g - to avoid confusion
The documentation was using "Posts" instead of "Sends" to describe the HTTP methods. It could create confusion because POST is a method name. Change-Id: I177184eafbfa358622e8509e58129b2ac4915053 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io> Reviewed-by: Jesus Fernandez <Jesus.Fernandez@qt.io>
-rw-r--r--src/oauth/qabstractoauth.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/oauth/qabstractoauth.cpp b/src/oauth/qabstractoauth.cpp
index e7e79d9..e0c473b 100644
--- a/src/oauth/qabstractoauth.cpp
+++ b/src/oauth/qabstractoauth.cpp
@@ -188,7 +188,7 @@ QT_BEGIN_NAMESPACE
/*!
\fn QNetworkReply *head(const QUrl &url, const QVariantMap &parameters)
- Posts an authenticated HEAD request and returns a new
+ Sends an authenticated HEAD request and returns a new
QNetworkReply. The \a url and \a parameters are used to create
the request.
@@ -199,7 +199,7 @@ QT_BEGIN_NAMESPACE
/*!
\fn QNetworkReply *get(const QUrl &url, const QVariantMap &parameters)
- Posts an authenticated GET request and returns a new
+ Sends an authenticated GET request and returns a new
QNetworkReply. The \a url and \a parameters are used to create
the request.
@@ -210,7 +210,7 @@ QT_BEGIN_NAMESPACE
/*!
\fn QNetworkReply *post(const QUrl &url, const QVariantMap &parameters)
- Posts an authenticated POST request and returns a new
+ Sends an authenticated POST request and returns a new
QNetworkReply. The \a url and \a parameters are used to create
the request.
@@ -221,7 +221,7 @@ QT_BEGIN_NAMESPACE
/*!
\fn QNetworkReply *deleteResource(const QUrl &url, const QVariantMap &parameters)
- Posts an authenticated DELETE request and returns a new
+ Sends an authenticated DELETE request and returns a new
QNetworkReply. The \a url and \a parameters are used to create
the request.