Skip to content

Commit fb318b4

Browse files
author
peachisai
committed
fix incorrect word
1 parent 4806b9c commit fb318b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apm-sniffer/optional-plugins/netty-http-4.1.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/netty/http/ChannelPipelineRemoveLastInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void beforeMethod(EnhancedInstance objInst, Method method, Object[] allAr
3636

3737
@Override
3838
public Object afterMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes, Object ret) throws Throwable {
39-
// If the removed handler is a SkyWalking enhanced handler, we continue removing the next which is the orignal handler before the instrumentation.
39+
// If the removed handler is a SkyWalking enhanced handler, we continue removing the next which is the original handler before the instrumentation.
4040
if (((ChannelHandler) ret).getClass().getName().startsWith(NettyConstants.HANDLER_PACKAGE_NAME)) {
4141
return ((ChannelPipeline) objInst).removeLast();
4242
}

0 commit comments

Comments
 (0)