Fix typos in comments.

Patch-from: lvqcl <lvqcl.mail@gmail.com>
This commit is contained in:
Erik de Castro Lopo
2014-02-24 21:47:16 +11:00
parent cf0e42ae6e
commit b334fb2a5c
2 changed files with 4 additions and 4 deletions

View File

@@ -1049,9 +1049,9 @@ FLAC__bool FLAC__bitreader_read_utf8_uint64(FLAC__BitReader *br, FLAC__uint64 *v
return true;
}
/* These functions a declared inline in this file but are also callable as
/* These functions are declared inline in this file but are also callable as
* externs from elsewhere.
* According to the C99 sepc, section 6.7.4, simply providing a function
* According to the C99 spec, section 6.7.4, simply providing a function
* prototype in a header file without 'inline' and making the function inline
* in this file should be sufficient.
* Unfortunately, the Microsoft VS compiler doesn't pick them up externally. To