Skip to content

Commit

Permalink
fix javadoc typos
Browse files Browse the repository at this point in the history
Signed-off-by: Kaushal Kumar <[email protected]>
  • Loading branch information
kaushalmahi12 committed Jan 7, 2025
1 parent 89f62cc commit 1024603
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class RuleAttributeTrie implements FastPrefixMatchingStructure {
private TrieNode root;

/**
* Constructs an empty AugmentedTrie.
* Constructs an empty Trie.
*/
public RuleAttributeTrie() {
root = new TrieNode("");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
package org.opensearch.plugin.wlm.rule.structure;

/**
* Handles the deletion operation for the Augmented Trie.
* Handles the deletion operation for the Trie.
*/
class TrieDeleter {
private TrieNode root;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
package org.opensearch.plugin.wlm.rule.structure;

/**
* Handles the insertion operation for the Augmented Trie.
* Handles the insertion operation for the Trie.
*/
class TrieInserter {
private TrieNode root;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.Queue;

/**
* Represents a node in the Augmented Trie.
* Represents a node in the Trie.
* Each node contains a key, an optional value, and references to child nodes.
*/
class TrieNode {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import java.util.function.Function;

/**
* Handles the search operation for the Augmented Trie.
* Handles the search operation for the Trie.
*/
class TrieSearcher {
private TrieNode root;
Expand Down

0 comments on commit 1024603

Please sign in to comment.