1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

OSC: Update docs

This commit is contained in:
reuk 2020-12-15 10:22:24 +00:00
parent d31b85ef00
commit f3a69664d6
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11
2 changed files with 3 additions and 3 deletions

View file

@ -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}
*/

View file

@ -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.