Skip to content

Commit c469a2d

Browse files
committed
fix typo
1 parent c867355 commit c469a2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ezyhttp-server-core/src/main/java/com/tvd12/ezyhttp/server/core/request/SimpleRequestArguments.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public class SimpleRequestArguments implements RequestArguments {
6060
public <T> T getArgument(Object key) {
6161
Object argument = arguments != null ? arguments.get(key) : null;
6262
if (argument == null && debug) {
63-
LOGGER.error("there is no value for argment: {}", key);
63+
LOGGER.error("there is no value for argument: {}", key);
6464
}
6565
return (T) argument;
6666
}

0 commit comments

Comments
 (0)