From 42e0331616d7c8113779c4adccddb8fa51672366 Mon Sep 17 00:00:00 2001 From: hanlin15 Date: Tue, 22 Jul 2025 17:07:59 +0800 Subject: [PATCH] fix:change object to obj Signed-off-by: hanlin15 Change-Id: I9b22585a3f268f43caced75ae3a3b26d616c37b7 --- api/@ohos.rpc.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.rpc.d.ts b/api/@ohos.rpc.d.ts index dd7aa896c7..5113307df7 100644 --- a/api/@ohos.rpc.d.ts +++ b/api/@ohos.rpc.d.ts @@ -1196,7 +1196,7 @@ declare namespace rpc { /** * Serialize a remote object and writes it to the {@link MessageSequence} object. * - * @param { IRemoteObject } object - Remote object to serialize. + * @param { IRemoteObject } obj - Remote object to serialize. * @throws { BusinessError } 401 - Parameter error. Possible causes: * 1.The number of parameters is incorrect; * 2.The parameter type does not match. @@ -1206,7 +1206,7 @@ declare namespace rpc { * @since arkts {'1.1':'9', '1.2':'20'} * @arkts 1.1&1.2 */ - writeRemoteObject(object: IRemoteObject): void; + writeRemoteObject(obj: IRemoteObject): void; /** * Reads a remote object from {@link MessageSequence} object. -- Gitee