fix extension

This commit is contained in:
breandan 2020-05-20 01:51:30 -04:00 committed by GitHub
parent 0115605ea5
commit 979c795224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ Please refer to [Plugin Dependencies](/basics/plugin_structure/plugin_dependenci
## 6. Advice
[Objects](https://kotlinlang.org/docs/reference/object-declarations.html) in Kotlin are known to interfere with the way the platform instantiates singletons. For this reason, it is reccoemended to not to use `object`s for any entities that are referenced in the [plugin configuration file](/basics/plugin_structure/plugin_configuration_file.html).
[Objects](https://kotlinlang.org/docs/reference/object-declarations.html) in Kotlin are known to interfere with the way the platform instantiates singletons. For this reason, it is reccoemended to not to use `object`s for any entities that are referenced in the [plugin configuration file](/basics/plugin_structure/plugin_configuration_file.md).
## 7. Examples