fix typo error (#5374)

Co-authored-by: kezhenxu94 <kezhenxu94@apache.org>
Co-authored-by: 吴晟 Wu Sheng <wu.sheng@foxmail.com>
This commit is contained in:
xbkaishui 2020-08-24 22:11:16 +08:00 committed by GitHub
parent 6c1659c56a
commit 481257ade5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ so you just need to define the intercept point(a.k.a. aspect pointcut in Spring)
### Intercept ### Intercept
SkyWalking provide two common defines to intercept Contructor, instance method and class method. SkyWalking provide two common defines to intercept Contructor, instance method and class method.
* Extend `ClassInstanceMethodsEnhancePluginDefine` defines `Contructor` intercept points and `instance method` intercept points. * Extend `ClassInstanceMethodsEnhancePluginDefine` defines `Contructor` intercept points and `instance method` intercept points.
* Extend `ClassStaticMethodsEnhancePluginDefine` definec `class 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. Of course, you can extend `ClassEnhancePluginDefine` to set all intercept points. But it is unusual.