mirror of
https://github.com/google/pebble.git
synced 2025-05-18 09:24:57 +00:00
spelling: contiguous
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
parent
74d9fc2ef5
commit
e3dd54fda9
2 changed files with 4 additions and 4 deletions
|
@ -213,7 +213,7 @@ void test_circular_buffer__read_or_copy_returns_false_when_length_is_too_long(vo
|
|||
malloc, &caller_should_free));
|
||||
}
|
||||
|
||||
void test_circular_buffer__read_or_copy_doesnt_copy_when_already_continguously_stored(void) {
|
||||
void test_circular_buffer__read_or_copy_doesnt_copy_when_already_contiguously_stored(void) {
|
||||
CircularBuffer buffer;
|
||||
uint8_t storage[8];
|
||||
circular_buffer_init(&buffer, storage, sizeof(storage));
|
||||
|
@ -230,7 +230,7 @@ static void *prv_oom_malloc(size_t length) {
|
|||
return NULL;
|
||||
}
|
||||
|
||||
void test_circular_buffer__read_or_copy_does_copy_when_not_continguously_stored(void) {
|
||||
void test_circular_buffer__read_or_copy_does_copy_when_not_contiguously_stored(void) {
|
||||
CircularBuffer buffer;
|
||||
uint8_t storage[8];
|
||||
circular_buffer_init(&buffer, storage, sizeof(storage));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue