doc(runtime-c-api) Fix inline comment.

This commit is contained in:
Ivan Enderlin 2019-05-13 10:52:43 +02:00
parent 7d2721ef7a
commit bedd305b06

View File

@ -69,7 +69,7 @@ pub unsafe extern "C" fn wasmer_last_error_message(buffer: *mut c_char, length:
let length = length as usize;
if error_message.len() >= length {
// buffer to small to hold the error message
// buffer is too small to hold the error message
return -1;
}