docs: fix typo in Java-Plugin-Development-Guide.md (#6463)

This commit is contained in:
Wayne Chu 2021-02-27 15:53:32 +08:00 committed by GitHub
parent 0e1d5c3767
commit daefd5ebce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.