We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ccf9b commit 8853d61Copy full SHA for 8853d61
packages/cspell-lib/fixtures/dictionaries/btrie/README.md
@@ -2,7 +2,7 @@
2
3
This is an example config file with both a path to a text file and a path to a BTrie file.
4
5
-The btrie can be build using:
+The btrie can be built using:
6
7
```
8
cspell-tools btrie ./btrie-words.txt
packages/cspell-lib/src/lib/Settings/DictionarySettings.ts
@@ -55,8 +55,6 @@ function fixPath(def: DictionaryDefinitionInternal): DictionaryDefinitionInterna
55
}
56
const newPath = fixDicPath(def.path, def.file);
57
const newBTriePath = def.btrie ? fixDicPath(def.btrie, def.file) : undefined;
58
- // console.error('fixPath %o => %o', def.path, newPath);
59
- // console.error('fixBTriePath %o => %o', def.btrie, newBTriePath);
60
return {
61
...def,
62
file: undefined,
0 commit comments