diff --git a/modules/juce_core/network/juce_WebInputStream.h b/modules/juce_core/network/juce_WebInputStream.h index 5a20e02732..0674621589 100644 --- a/modules/juce_core/network/juce_WebInputStream.h +++ b/modules/juce_core/network/juce_WebInputStream.h @@ -122,7 +122,7 @@ class JUCE_API WebInputStream : public InputStream an error has occurred. Note that most methods will call connect internally if they are called without - an established connection. Therefore, it is not necessary to explicitely + an established connection. Therefore, it is not necessary to explicitly call connect unless you would like to use a custom listener. After a successful call to connect, getResponseHeaders, getTotalLength and diff --git a/modules/juce_core/time/juce_Time.h b/modules/juce_core/time/juce_Time.h index ee9b7671a7..c38321b5a0 100644 --- a/modules/juce_core/time/juce_Time.h +++ b/modules/juce_core/time/juce_Time.h @@ -300,7 +300,7 @@ public: /** Returns the number of millisecs since a fixed event (usually system startup). - This returns a monotonically increasing value which it unaffected by changes to the + This returns a monotonically increasing value which is unaffected by changes to the system clock. It should be accurate to within a few millisecs, depending on platform, hardware, etc. diff --git a/modules/juce_core/xml/juce_XmlElement.h b/modules/juce_core/xml/juce_XmlElement.h index 68fc5a4ecd..5c1b90fe34 100644 --- a/modules/juce_core/xml/juce_XmlElement.h +++ b/modules/juce_core/xml/juce_XmlElement.h @@ -167,9 +167,9 @@ public: ~XmlElement() noexcept; //============================================================================== - /** Compares two XmlElements to see if they contain the same text and attiributes. + /** Compares two XmlElements to see if they contain the same text and attributes. - The elements are only considered equivalent if they contain the same attiributes + The elements are only considered equivalent if they contain the same attributes with the same values, and have the same sub-nodes. @param other the other element to compare to