From 14b971214c488aa3f4ab150d1a6cc379df1758be Mon Sep 17 00:00:00 2001 From: yuye-aws Date: Tue, 7 Jan 2025 06:58:09 +0800 Subject: [PATCH] fix typo (#3234) Signed-off-by: yuye-aws --- .../main/java/org/opensearch/ml/common/spi/memory/Memory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spi/src/main/java/org/opensearch/ml/common/spi/memory/Memory.java b/spi/src/main/java/org/opensearch/ml/common/spi/memory/Memory.java index 61e695f6a0..4898cea587 100644 --- a/spi/src/main/java/org/opensearch/ml/common/spi/memory/Memory.java +++ b/spi/src/main/java/org/opensearch/ml/common/spi/memory/Memory.java @@ -54,7 +54,7 @@ interface Factory { * Create an instance of this Memory. * * @param params Parameters for the memory - * @param listener Action listern for the memory creation action + * @param listener Action listen for the memory creation action */ void create(Map params, ActionListener listener); }