diff --git a/docs-source/src/en/about/contacts.md b/docs-source/src/en/about/contacts.md
index a49be416..d6b8e3af 100644
--- a/docs-source/src/en/about/contacts.md
+++ b/docs-source/src/en/about/contacts.md
@@ -6,7 +6,7 @@ Join us [Click to join Telegram group](https://t.me/YukiHookAPI)
Find me on **Twitter** [@fankesyooni](https://twitter.com/fankesyooni)
-## Help with maintenance
+## Help with Maintenance
Thank you for choosing and using `YukiHookAPI`.
diff --git a/docs-source/src/en/about/future.md b/docs-source/src/en/about/future.md
index 07d44535..51ac25fa 100644
--- a/docs-source/src/en/about/future.md
+++ b/docs-source/src/en/about/future.md
@@ -20,9 +20,9 @@ In the later period, the permissions of the Android system will become more and
> Features that `YukiHookAPI` may add later are included here.
-### Lite version supported for standalone use
+### Lite Version Supported for Standalone Use
-::: tip To be discussed
+::: tip To be Discussed
At present, the API only supports binding to **xposed_init** through the automatic handler.
@@ -36,7 +36,7 @@ You can submit **issues** with us.
We have provided the Xposed native API listening interface, you can find or view the implementation method of the Demo [here](../config/xposed-using#native-xposed-api-events).
-### Support for more Hook Framework
+### Support for More Hook Framework
As an API, currently only docking `XposedBridge` as a compatibility layer still has certain limitations.
diff --git a/docs-source/src/en/config/api-example.md b/docs-source/src/en/config/api-example.md
index 19bb2a08..75a21096 100644
--- a/docs-source/src/en/config/api-example.md
+++ b/docs-source/src/en/config/api-example.md
@@ -300,7 +300,8 @@ class HookEntry : IYukiHookXposedInit {
object CustomHooker : YukiBaseHooker() {
override fun onHook() {
- // ❗ Wrong method of use, because there is no judgment object in the outer layer, you cannot start Hook directly
+ // ❗ Wrong method of use
+ // Because there is no judgment object in the outer layer, you cannot start Hook directly
findClass(name = "com.example.demo.DemoClass").hook {
// ...
}
diff --git a/docs-source/src/en/guide/quick-start.md b/docs-source/src/en/guide/quick-start.md
index 0d7465c4..e5de51b8 100644
--- a/docs-source/src/en/guide/quick-start.md
+++ b/docs-source/src/en/guide/quick-start.md
@@ -121,23 +121,24 @@ Add the base code to your `AndroidManifest.xml`.
android:name="xposedmodule"
android:value="true" />
-
+
-
+
+
-
+
```
-Create a Hook entry class in your project, inherit from `IYukiHookXposedInit` and add the annotation `@InjectYukiHookWithXposed`.
+Create a Hook entry class in your project, implements `IYukiHookXposedInit` and add the annotation `@InjectYukiHookWithXposed`.
> The following example
@@ -153,7 +154,7 @@ class HookEntry : IYukiHookXposedInit {
::: tip Suggestion
-You can inherit **Application** of your module app from **ModuleApplication** to achieve a complete user experience.
+You can extends **Application** of your Module App from **ModuleApplication** to achieve a complete user experience.
For more functions, please refer to [ModuleApplication](../api/public/com/highcapable/yukihookapi/hook/xposed/application/ModuleApplication).