diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 79ff6007..6389414e 100644 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -321,7 +321,7 @@ "Pseudo-Random Number Generator", "Sleep", "File Tree", - "Ngram" + "N-gram" ] }, { diff --git a/src/core/operations/Ngram.mjs b/src/core/operations/Ngram.mjs index fbcbfce7..6471e4d8 100644 --- a/src/core/operations/Ngram.mjs +++ b/src/core/operations/Ngram.mjs @@ -17,7 +17,7 @@ class Ngram extends Operation { constructor() { super(); - this.name = "Ngram"; + this.name = "N-gram"; this.module = "Default"; this.description = "Extracts n-grams from the input text. N-grams are contiguous sequences of n characters from a given text sample."; this.infoURL = "https://wikipedia.org/wiki/N-gram";