Minor clean up of comments

This commit is contained in:
gingerBill
2024-08-14 14:15:20 +01:00
parent 03dd38f203
commit 18b6af1858
+4 -2
View File
@@ -80,7 +80,8 @@ foreign lib {
HasHostError :: proc(stream: Stream) -> b32 ---
}
/** Translate portmidi error number into human readable message.
/**
Translate portmidi error number into human readable message.
These strings are constants (set at compile time) so client has
no need to allocate storage
*/
@@ -92,7 +93,8 @@ GetErrorText :: proc (errnum: Error) -> string {
return string(Pm_GetErrorText(errnum))
}
/** Translate portmidi host error into human readable message.
/**
Translate portmidi host error into human readable message.
These strings are computed at run time, so client has to allocate storage.
After this routine executes, the host error is cleared.
*/