From 45b2c7366197189bc7c8f44557e4f5e2f0dc64c1 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Mon, 22 Jan 2024 11:48:00 +0900 Subject: [PATCH] Fix typo in Javadoc. Closes #4620 --- .../springframework/data/mongodb/core/DocumentTestUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/DocumentTestUtils.java b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/DocumentTestUtils.java index 03b79bb0fd..1d87e45e0b 100644 --- a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/DocumentTestUtils.java +++ b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/core/DocumentTestUtils.java @@ -29,6 +29,7 @@ * * @author Oliver Gierke * @author Mark Paluch + * @author Jongwoo Han */ public abstract class DocumentTestUtils { @@ -38,7 +39,7 @@ private DocumentTestUtils() {} * Expects the field with the given key to be not {@literal null} and a {@link Document} in turn and returns it. * * @param source the {@link Document} to lookup the nested one - * @param key the key of the field to lokup the nested {@link Document} + * @param key the key of the field to lookup the nested {@link Document} * @return */ public static Document getAsDocument(Document source, String key) {