summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Popela <tpopela@redhat.com>2016-02-05 13:36:06 +0100
committerTomas Popela <tpopela@redhat.com>2016-02-16 11:55:49 +0100
commita16db01d53c566f5a788b1df2e1722621c3ae74c (patch)
tree53d104ccfd0e638fc81e117f84dd69f5bc3db59d
parent603e6552c00a2126e0478eb9b5b4196dbcb068e3 (diff)
downloadlibsoup-a16db01d53c566f5a788b1df2e1722621c3ae74c.tar.gz
Correct some typos in comments
-rw-r--r--libsoup/soup-auth-negotiate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsoup/soup-auth-negotiate.c b/libsoup/soup-auth-negotiate.c
index bf81c991..d903bdb6 100644
--- a/libsoup/soup-auth-negotiate.c
+++ b/libsoup/soup-auth-negotiate.c
@@ -36,7 +36,7 @@ G_DEFINE_TYPE (SoupAuthNegotiate, soup_auth_negotiate, SOUP_TYPE_CONNECTION_AUTH
typedef enum {
SOUP_NEGOTIATE_NEW,
- SOUP_NEGOTIATE_RECEIVED_CHALLENGE, /* received intial negotiate header */
+ SOUP_NEGOTIATE_RECEIVED_CHALLENGE, /* received initial negotiate header */
SOUP_NEGOTIATE_SENT_RESPONSE, /* sent response to server */
SOUP_NEGOTIATE_FAILED
} SoupNegotiateState;
@@ -317,7 +317,7 @@ parse_trusted_uris (void)
for (i = 0; i < g_strv_length (uris); i++) {
SoupURI *uri;
- /* Is the supplied URI is valid append it to the list */
+ /* If the supplied URI is valid, append it to the list */
if ((uri = soup_uri_new (uris[i])))
trusted_uris = g_slist_append (trusted_uris, uri);
}