1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 03:29:40 +00:00

Fix typos

This commit is contained in:
Ryan Carsten Schmidt
2023-12-14 03:20:12 -06:00
parent def1f90d86
commit 5ef6b190af
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ Storage::Disk::PCMSegment sync(int length, int bit_size) {
// Reserve sufficient storage.
segment.data.reserve(size_t(length * bit_size));
// Write patters of 0xff padded with 0s to the selected bit size.
// Write patterns of 0xff padded with 0s to the selected bit size.
while(length--) {
int c = 8;
while(c--)