From baa5c2e81386c7277c53cff051b3a86831d44874 Mon Sep 17 00:00:00 2001 From: hanlin15 Date: Wed, 6 Aug 2025 22:01:06 +0800 Subject: [PATCH] feature:change object to obj Signed-off-by: hanlin15 Change-Id: I75a77593329ec35fc4b171769f35476de798883b --- 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