summaryrefslogtreecommitdiff
path: root/libsoup/soup-method.h
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2020-11-03 13:50:26 -0600
committerPatrick Griffis <pgriffis@igalia.com>2020-11-03 13:50:26 -0600
commit3485d82b7fc4451006f9b5a94fe143efab9b2a9d (patch)
tree1ef2f2b28b400850ef64707cc7211b3b6b41bd82 /libsoup/soup-method.h
parent488c782ecb1dfb3d5914bea29ee4033e6ec50429 (diff)
downloadlibsoup-3485d82b7fc4451006f9b5a94fe143efab9b2a9d.tar.gz
docs: Fix misc minor warnings
Diffstat (limited to 'libsoup/soup-method.h')
-rw-r--r--libsoup/soup-method.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libsoup/soup-method.h b/libsoup/soup-method.h
index 952d4b6b..2cf5231f 100644
--- a/libsoup/soup-method.h
+++ b/libsoup/soup-method.h
@@ -19,11 +19,11 @@ G_BEGIN_DECLS
* arbitrary strings to soup_message_new() if you prefer.
*
* The thing that these defines <emphasis>are</emphasis> useful for is
- * performing quick comparisons against #SoupMessage's %method field;
- * because that field always contains an interned string, and these
- * macros return interned strings, you can compare %method directly
+ * performing quick comparisons against soup_message_get_method();
+ * because #SoupMessage always contains an interned string, and these
+ * macros return interned strings, you can compare methods directly
* against these macros rather than needing to use strcmp(). This is
- * most useful in SoupServer handlers. Eg:
+ * most useful in #SoupServer handlers. Eg:
*
* <informalexample><programlisting>
* if (soup_message_get_method (msg) != SOUP_METHOD_GET &amp;&amp; soup_message_get_method (msg) != SOUP_METHOD_HEAD) {