From daefd5ebce46eca9b0a7d3a9ceda5fbc706e5027 Mon Sep 17 00:00:00 2001 From: Wayne Chu Date: Sat, 27 Feb 2021 15:53:32 +0800 Subject: [PATCH] docs: fix typo in Java-Plugin-Development-Guide.md (#6463) --- docs/en/guides/Java-Plugin-Development-Guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/guides/Java-Plugin-Development-Guide.md b/docs/en/guides/Java-Plugin-Development-Guide.md index 325f9de45..2a3429374 100644 --- a/docs/en/guides/Java-Plugin-Development-Guide.md +++ b/docs/en/guides/Java-Plugin-Development-Guide.md @@ -232,8 +232,8 @@ SkyWalking boxed the byte code manipulation tech and tracing context propagation so you just need to define the intercept point(a.k.a. aspect pointcut in Spring) ### Intercept -SkyWalking provide two common defines to intercept Contructor, instance method and class method. -* Extend `ClassInstanceMethodsEnhancePluginDefine` defines `Contructor` intercept points and `instance method` intercept points. +SkyWalking provide two common defines to intercept constructor, instance method and class method. +* Extend `ClassInstanceMethodsEnhancePluginDefine` defines `constructor` intercept points and `instance method` intercept points. * Extend `ClassStaticMethodsEnhancePluginDefine` defines `class method` intercept points. Of course, you can extend `ClassEnhancePluginDefine` to set all intercept points. But it is unusual.