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.