rename ToBuffer to ToBytes

This commit is contained in:
2024-09-29 15:56:51 -05:00
parent a2a211dfe3
commit 21b61db4c9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ func argsToBuffer(args []OSCArg) []byte {
return argBuffers
}
func ToBuffer(message OSCMessage) []byte {
func ToBytes(message OSCMessage) []byte {
oscBuffer := []byte{}
oscBuffer = append(oscBuffer, stringToOSCBytes(message.Address)...)