summaryrefslogtreecommitdiff
path: root/src/libFLAC/bitwriter.c
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2014-02-24 21:47:16 +1100
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-02-24 21:47:20 +1100
commitb334fb2a5cb97033ec34619c026ca9aac6696585 (patch)
treef0a55a17a9e5dd9867c5bc6dd2bb46c8579bc8f3 /src/libFLAC/bitwriter.c
parentcf0e42ae6e8074655c7955cbff139fac1b203a23 (diff)
downloadflac-b334fb2a5cb97033ec34619c026ca9aac6696585.tar.gz
Fix typos in comments.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
Diffstat (limited to 'src/libFLAC/bitwriter.c')
-rw-r--r--src/libFLAC/bitwriter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libFLAC/bitwriter.c b/src/libFLAC/bitwriter.c
index ea91a840..543770fb 100644
--- a/src/libFLAC/bitwriter.c
+++ b/src/libFLAC/bitwriter.c
@@ -828,9 +828,9 @@ FLAC__bool FLAC__bitwriter_zero_pad_to_byte_boundary(FLAC__BitWriter *bw)
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