Fixed typo in comment

cijo-saju created

Change summary

src/main/java/eu/siacs/conversations/xmpp/jid/Jid.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

src/main/java/eu/siacs/conversations/xmpp/jid/Jid.java 🔗

@@ -23,7 +23,7 @@ public final class Jid {
 
 	private static final char[] JID_ESCAPING_CHARS = {' ','"','&','\'','/',':','<','>','@','\\'};
 
-	// It's much more efficient to store the ful JID as well as the parts instead of figuring them
+	// It's much more efficient to store the full JID as well as the parts instead of figuring them
 	// all out every time (since some characters are displayed but aren't used for comparisons).
 	private final String displayjid;