1
0
Fork 0

fixed a spelling mistake

This commit is contained in:
sspanak 2024-02-10 22:49:16 +02:00 committed by Dimo Karaivanov
parent aed7610c4b
commit 7ae9a6f8e3

View file

@ -6,7 +6,6 @@ const { createInterface } = require('readline');
function printHelp() { function printHelp() {
console.log(`Usage ${basename(process.argv[1])} aosp-dictionary-file.txt [minimum-frequency] [--no-freq]`); console.log(`Usage ${basename(process.argv[1])} aosp-dictionary-file.txt [minimum-frequency] [--no-freq]`);
console.log('Converts an AOSP dictionary to TT9 compatible format. The second parameter must be an integer and allows for filtering words with frequency less than the given number. If "--no-freq" is set, only words without frequencies will be listed.'); console.log('Converts an AOSP dictionary to TT9 compatible format. The second parameter must be an integer and allows for filtering words with frequency less than the given number. If "--no-freq" is set, only words without frequencies will be listed.');
console.log('LOCALE could be any valid JS locale, for example: en, en-US, etc...');
} }