Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ bindings documentation

### Documentation
After build, documentation is in __docs directory__. Documentation is built
in html xml and latex format. Only uncomplete documentation for C library
in html xml and latex format. Only incomplete documentation for C library
is available at the moment. Look at bindings unittest `__test.py__` for python
bindings usage.

Expand Down
6 changes: 3 additions & 3 deletions libcomps/tests/check_list.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ START_TEST(test_remove)
fail_unless(*(int*)it->data == 77,
"Item data after remove should be 77 not %d",
*(int*)it->data);
fail_unless(list->len == 8, "List lenght should be 8");
fail_unless(list->len == 8, "List length should be 8");
tmp = list->len;

for (i=0; i < tmp; i++) {
Expand Down Expand Up @@ -164,9 +164,9 @@ START_TEST(test_insert)
}
for (i=0; i<test_data_len; i++) {
item = comps_list_at(list, test_data_len-i-1);
fail_unless(*((int*)item->data) == test_data[i], "Item data doens't match");
fail_unless(*((int*)item->data) == test_data[i], "Item data does not match");
}
fail_unless(list->len == 10, "List lenght should be 10");
fail_unless(list->len == 10, "List length should be 10");

data = 14;
item = comps_list_item_create((void*)&data,
Expand Down
Loading