Skip to content

Commit 9c673a2

Browse files
Update manifest.json
1 parent 6ce7797 commit 9c673a2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"type": "internal-link",
2828
"id": "ds-json-intro",
2929
"label": "Introduction",
30-
"summary": "Store, update, and retrieve JSON values in a Redis database, similar to any other Redis data type.",
30+
"summary": "A Redis JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.",
3131
"args": {
3232
"path": "/ds/json/introduction.md"
3333
}
@@ -94,7 +94,7 @@
9494
"type": "internal-link",
9595
"id": "ds-strings",
9696
"label": "Strings",
97-
"summary": "Strings are the most basic Redis data type , often used for caching, and more.",
97+
"summary": "A Redis string, the most basic Redis data type, holds a sequence of bytes.",
9898
"args": {
9999
"path": "/ds/strings.md"
100100
}
@@ -103,7 +103,7 @@
103103
"type": "internal-link",
104104
"id": "ds-hashes",
105105
"label": "Hashes",
106-
"summary": "Use hashes to represent basic objects and to store groupings of counters, among other things.",
106+
"summary": "A Redis hash is a collection of fields, where each field is a name-value pair. Both name and value are strings.",
107107
"args": {
108108
"path": "/ds/hashes.md"
109109
}
@@ -112,7 +112,7 @@
112112
"type": "internal-link",
113113
"id": "ds-lists",
114114
"label": "Lists",
115-
"summary": "Redis lists are lists of strings sorted by insertion order, used e.g. to implement stacks and queues.",
115+
"summary": "A Redis list is a linked list of string values, often used to implement stacks and queues.",
116116
"args": {
117117
"path": "/ds/lists.md"
118118
}
@@ -121,7 +121,7 @@
121121
"type": "internal-link",
122122
"id": "ds-sets",
123123
"label": "Sets",
124-
"summary": "Sets are unordered collections of unique strings that act like the sets from your favorite programming language.",
124+
"summary": "A Redis set is an unordered collection of unique strings.",
125125
"args": {
126126
"path": "/ds/sets.md"
127127
}
@@ -130,7 +130,7 @@
130130
"type": "internal-link",
131131
"id": "ds-sorted-sets",
132132
"label": "Sorted sets",
133-
"summary": "Sorted sets are collections of unique strings ordered by an associated score.",
133+
"summary": "A Redis sorted set is a collection of unique strings, ordered by each string's associated score.",
134134
"args": {
135135
"path": "/ds/sorted_sets.md"
136136
}

0 commit comments

Comments
 (0)