cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / common / network.cpp
index d6ee3c6..f0a86b2 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2020 by the Quassel Project                        *
+ *   Copyright (C) 2005-2022 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -844,7 +844,7 @@ void Network::removeCap(const QString& capability)
         // Remove from the list of available capabilities.
         _caps.remove(_capLowercase);
         // Remove it from the acknowledged list if it was previously acknowledged.  The SYNC call
-        // ensures this propogates to the other side.
+        // ensures this propagates to the other side.
         // Use removeOne() for speed; no more than one due to contains() check in acknowledgeCap().
         _capsEnabled.removeOne(_capLowercase);
         SYNC(ARG(capability))