diff --git a/modules/juce_osc/osc/juce_OSCAddress.h b/modules/juce_osc/osc/juce_OSCAddress.h index e9ba7effa1..fd2a311193 100644 --- a/modules/juce_osc/osc/juce_OSCAddress.h +++ b/modules/juce_osc/osc/juce_OSCAddress.h @@ -36,11 +36,11 @@ namespace juce Only a subset of ASCII characters are allowed in OSC addresses; see OpenSoundControl 1.0 specification for details. - OSC addresses can be used to register OSCMessageListener objects to an + OSC addresses can be used to register ListenerWithOSCAddress objects to an OSCReceiver if you wish them to only listen to certain messages with matching OSC address patterns. - @see OSCMessageListener, OSCAddressPattern, OSCMessage + @see OSCReceiver, OSCAddressPattern, OSCMessage @tags{OSC} */ diff --git a/modules/juce_osc/osc/juce_OSCArgument.h b/modules/juce_osc/osc/juce_OSCArgument.h index 20b9248bb9..b8456400ed 100644 --- a/modules/juce_osc/osc/juce_OSCArgument.h +++ b/modules/juce_osc/osc/juce_OSCArgument.h @@ -77,7 +77,7 @@ public: /** Returns whether the type of the OSCArgument is blob. */ bool isBlob() const noexcept { return type == OSCTypes::blob; } - /** Returns whether the type of the OSCArgument is blob. */ + /** Returns whether the type of the OSCArgument is colour. */ bool isColour() const noexcept { return type == OSCTypes::colour; } /** Returns the value of the OSCArgument as an int32.