about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorDaniel Santos <dacs.git@brilhante.top>2023-04-02 11:27:10 +0100
committerDaniel Santos <dacs.git@brilhante.top>2023-04-03 13:25:25 +0100
commitc7f05c9ebf69921cab8ff6f902938982c517d1b9 (patch)
tree539900206b450ff5b8369fd1ded11979fb88d6a3 /src/xmpp
parentf2c83fa8ceea29e295509c8b964f1e9ccda2f0e4 (diff)
downloadprofani-tty-c7f05c9ebf69921cab8ff6f902938982c517d1b9.tar.gz
Fix typos and update codespell configuration
 * Fix typos.
 * Add words that are not typos to codespell's ignore words list and
 ignore regex.
 * Make codespell ignore URIs.
 * Make `make doublecheck` throw no error.

Signed-off-by: Daniel Santos <dacs.git@brilhante.top>
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/vcard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/vcard.c b/src/xmpp/vcard.c
index 6d2f0b1e..b3ff5d39 100644
--- a/src/xmpp/vcard.c
+++ b/src/xmpp/vcard.c
@@ -297,7 +297,7 @@ vcard_parse(xmpp_stanza_t* vcard_xml, vCard* vcard)
             element->nickname = stanza_text_strdup(child_pointer);
 
             if (!element->nickname) {
-                // Invaild element, free and do not push
+                // Invalid element, free and do not push
                 free(element);
                 continue;
             }