From 9dd5faa8ed27c9b2d3a40b1438fa3156e9873b8f Mon Sep 17 00:00:00 2001 From: maxwondercorn Date: Wed, 2 Sep 2020 23:33:23 -0400 Subject: [PATCH] doc: fix spelling error in CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 299b918..471e54c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -45,7 +45,7 @@ See the Hunspell [man pages](https://www.systutorials.com/docs/linux/man/4-hunsp When making updates to `index.dic`: * _All new custom words must be added to the file before the word "`0/nm`"._ -* The first line of the file is the number of words in the file. It doesn't need to be exact but it should be close. Most ides have line numbers making it easy to count the words +* The first line of the file is the number of words in the file. It doesn't need to be exact but it should be close. Most IDE's have line numbers making it easy to count the words * Find and remove any duplicate words using the command (macOS/Linux) ```rev index.dic | cut -f1 -d/ | rev | sort | uniq -d``` You can ignore the seemingly nonsense words at the beginning of the list. The `real` duplicates will be at the end of the list.