cspell-trie 7.3.7 → 7.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -114,12 +114,12 @@ each line can only refer to previous lines.
|
|
|
114
114
|
|
|
115
115
|
How to walk the data to see if "talks" is in it.
|
|
116
116
|
|
|
117
|
-
1.
|
|
118
|
-
1.
|
|
119
|
-
1.
|
|
120
|
-
1.
|
|
121
|
-
1.
|
|
122
|
-
1.
|
|
117
|
+
1. Start with the root at offset 8.
|
|
118
|
+
1. t found goto 7
|
|
119
|
+
1. a found goto 6
|
|
120
|
+
1. l found goto 5
|
|
121
|
+
1. k found goto 4
|
|
122
|
+
1. s found stop (goto 0 is stop).
|
|
123
123
|
|
|
124
124
|
<!---
|
|
125
125
|
cspell:word DAFSA DAWG
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-trie",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.9",
|
|
4
4
|
"description": "Trie Data Structure reader for cspell",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"commander": "^11.
|
|
43
|
-
"cspell-trie-lib": "7.3.
|
|
42
|
+
"commander": "^11.1.0",
|
|
43
|
+
"cspell-trie-lib": "7.3.9",
|
|
44
44
|
"gensequence": "^6.0.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=16"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "77c7fb3ffd80a626ec07d704cefcaa21d62fd460"
|
|
50
50
|
}
|