diff --git a/docs/functions/core/llist/why2_list_find.md b/docs/functions/core/llist/why2_list_find.md
index 0e0e77a..be4496d 100644
--- a/docs/functions/core/llist/why2_list_find.md
+++ b/docs/functions/core/llist/why2_list_find.md
@@ -35,4 +35,4 @@ along with this program. If not, see .
## Description
-Finds node containing `value` and returns pointer to it. If no match is found, `NULL` is returned.
\ No newline at end of file
+Finds node in linked-list (`list`) containing `value` and returns pointer to it. If no match is found, `NULL` is returned.
\ No newline at end of file
diff --git a/docs/functions/core/llist/why2_list_get_size.md b/docs/functions/core/llist/why2_list_get_size.md
index fb1695b..77f397d 100644
--- a/docs/functions/core/llist/why2_list_get_size.md
+++ b/docs/functions/core/llist/why2_list_get_size.md
@@ -34,4 +34,4 @@ along with this program. If not, see .
## Description
-Calculates size of `list` (how many nodes are present) and returns it.
\ No newline at end of file
+Calculates size of linked-list (`list`) (how many nodes are present) and returns it.
\ No newline at end of file
diff --git a/docs/functions/core/llist/why2_list_reverse.md b/docs/functions/core/llist/why2_list_reverse.md
index ec40458..4e05372 100644
--- a/docs/functions/core/llist/why2_list_reverse.md
+++ b/docs/functions/core/llist/why2_list_reverse.md
@@ -35,4 +35,4 @@ along with this program. If not, see .
## Description
-Reverses node order in `list`. `size` is size of nodes in `list`, because of the reallocations.
\ No newline at end of file
+Reverses node order in linked-list (`list`). `size` is size of nodes in `list`, because of the reallocations.
\ No newline at end of file