diff --git a/README.md b/README.md
index 871ac21f8..698270a50 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
## Table of Content
### :books: List
-
chunk
+View contents chunk
compact
count_occurences
deep_flatten
@@ -23,12 +23,12 @@
### :scroll: String
- count_vowels
+View contents
### :heavy_division_sign: Math
- gcd
+View contents gcd
lcm
max_n
min_n
diff --git a/scripts/readme.py b/scripts/readme.py
index 13cd7de58..274be23b3 100644
--- a/scripts/readme.py
+++ b/scripts/readme.py
@@ -36,7 +36,7 @@ toAppend = ''
tag_dict = tagger()
toAppend += '## Table of Content \n'
for category in tag_dict:
- toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n '
+ toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\nView contents '
for snippet in tag_dict[category]:
toAppend += f'{snippet} \n'
toAppend += '
\n\n'