Skip to content

Commit 8853d61

Browse files
authored
chore: Fix code review nits. (#8333)
1 parent 15ccf9b commit 8853d61

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

packages/cspell-lib/fixtures/dictionaries/btrie/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is an example config file with both a path to a text file and a path to a BTrie file.
44

5-
The btrie can be build using:
5+
The btrie can be built using:
66

77
```
88
cspell-tools btrie ./btrie-words.txt

packages/cspell-lib/src/lib/Settings/DictionarySettings.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ function fixPath(def: DictionaryDefinitionInternal): DictionaryDefinitionInterna
5555
}
5656
const newPath = fixDicPath(def.path, def.file);
5757
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);
6058
return {
6159
...def,
6260
file: undefined,

0 commit comments

Comments
 (0)