From 6f98a768f01b91d06e959c48ab727233f5d53175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=9C=E5=BA=86=E6=B3=89?= Date: Wed, 15 Nov 2023 11:27:27 +0800 Subject: [PATCH] Update uts-for-android.md --- docs/plugin/uts-for-android.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/plugin/uts-for-android.md b/docs/plugin/uts-for-android.md index 8063b7413..880540a89 100644 --- a/docs/plugin/uts-for-android.md +++ b/docs/plugin/uts-for-android.md @@ -959,15 +959,15 @@ user!!.sayHello(); #### 5.1.6 快速调用父类实现 -```ts -//ts 中快速实现super +```kotlin +//kotlin 中快速实现super constructor() : super() { } ``` -```kotlin -//kotlin 中快速实现super +```uts +//uts 中快速实现super constructor (){ super(); } -- GitLab