From 37acc1a42d5cf1364697625a542c4df469f0ff40 Mon Sep 17 00:00:00 2001 From: fanqibing Date: Wed, 2 Jul 2025 14:16:44 +0800 Subject: [PATCH] addjust description for setNetExtAttribute Signed-off-by: fanqibing --- api/@ohos.net.connection.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.net.connection.d.ts b/api/@ohos.net.connection.d.ts index 283b93bbd9..4ad35e012c 100644 --- a/api/@ohos.net.connection.d.ts +++ b/api/@ohos.net.connection.d.ts @@ -398,7 +398,7 @@ declare namespace connection { * Set the network extended attribute for a {@link NetHandle} object. * To invoke this method, you must have the {@code ohos.permission.SET_NET_EXT_ATTRIBUTE} permission. * @permission ohos.permission.SET_NET_EXT_ATTRIBUTE - * @param { NetHandle } netHandle - Indicates the network to be queried. See {@link NetHandle}. + * @param { NetHandle } netHandle - Indicates the network to be setted. See {@link NetHandle}. * @param { string } netExtAttribute - Indicates the extended attribute of the network. * @returns { Promise } The promise returned by the function. * @throws { BusinessError } 201 - Permission denied. @@ -414,7 +414,7 @@ declare namespace connection { * Set the network extended attribute for a {@link NetHandle} object. * To invoke this method, you must have the {@code ohos.permission.SET_NET_EXT_ATTRIBUTE} permission. * @permission ohos.permission.SET_NET_EXT_ATTRIBUTE - * @param { NetHandle } netHandle - Indicates the network to be queried. See {@link NetHandle}. + * @param { NetHandle } netHandle - Indicates the network to be setted. See {@link NetHandle}. * @param { string } netExtAttribute - Indicates the extended attribute of the network. * @throws { BusinessError } 201 - Permission denied. * @throws { BusinessError } 2100001 - Invalid parameter value. -- Gitee