From 416e0c105ca53a58f0475210b6c893cba2294ff6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 13 Dec 2020 07:12:23 +1100 Subject: [PATCH] docs: fix simple typo, vocabuly -> vocabulary There is a small typo in word2vec.c. Should read `vocabulary` rather than `vocabuly`. --- word2vec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/word2vec.c b/word2vec.c index 19bb356..9d1a417 100644 --- a/word2vec.c +++ b/word2vec.c @@ -815,7 +815,7 @@ void *TrainModelThread(void *id) { * iter - This is the number of training epochs to run; default is 5. * word_count - The number of input words processed. * train_words - The total number of words in the training text (not - * including words removed from the vocabuly by ReduceVocab). + * including words removed from the vocabulary by ReduceVocab). */ // This block prints a progress update, and also adjusts the training