Skip to content

Commit a442784

Browse files
committed
Merge branch 'release/0.6.4'
2 parents cac0a1d + 6abeb79 commit a442784

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Items on the list can accessed:
4747
WARNING !
4848
Note:
4949
- index starts with 0 not 1 so interval is [0,n)
50-
- always check if index is in valid range before you try to clear item
50+
- always check if index is in valid range before you try to get item
5151
*/
5252
int val3 = list.at(index);
5353
int val3 = list.get(index);
@@ -68,7 +68,7 @@ Values of items that are already in the list, can be changed:
6868
Size of list can be accessed with:
6969
``` C++
7070
int list_size = list.size();
71-
int same_list_size = list.legth();
71+
int same_list_size = list.length();
7272
```
7373

7474
You can also search for items in list:

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=QList
2-
version=0.6.3
2+
version=0.6.4
33
author=Martin Dagarin
44
maintainer=Martin Dagarin <[email protected]>
55
sentence=Library implements linked lists

0 commit comments

Comments
 (0)