diff --git a/api/@ohos.net.connection.d.ts b/api/@ohos.net.connection.d.ts
index 283d7bef593de0ab92675dd186438e86a124b014..ea1121b4d85a7db374383f31e5721178f524d564 100644
--- a/api/@ohos.net.connection.d.ts
+++ b/api/@ohos.net.connection.d.ts
@@ -29,7 +29,7 @@ declare namespace connection {
type UDPSocket = socket.UDPSocket;
/**
- * Create a network connection with optional netSpefifier and timeout.
+ * Create a network connection with optional netSpecifier and timeout.
*
* @param netSpecifier Indicates the network specifier. See {@link NetSpecifier}.
* @param timeout The time in milliseconds to attempt looking for a suitable network before
@@ -52,7 +52,7 @@ declare namespace connection {
*
*
To call this method, you must have the {@code ohos.permission.GET_NETWORK_INFO} permission.
*
- * @return Returns the {@link NetHandle} object;
+ * @returns Returns the {@link NetHandle} object;
* returns {@code null} if the default network is not activated.
* @permission ohos.permission.GET_NETWORK_INFO
* @since 9
@@ -212,7 +212,7 @@ declare namespace connection {
* Resolves a host name to obtain the first IP address based on the specified NetHandle.
*
* @param host Indicates the host name or the domain.
- * @return Returns the first NetAddress.
+ * @param callback Returns the first NetAddress.
* @permission ohos.permission.GET_NETWORK_INFO
*/
getAddressByName(host: string, callback: AsyncCallback): void;
diff --git a/api/@ohos.net.ethernet.d.ts b/api/@ohos.net.ethernet.d.ts
index b1a3e6a33ff591c8f0a9c9dc197df260b939925d..12ea7797b2a74f025953a49eec609533eb81b314 100644
--- a/api/@ohos.net.ethernet.d.ts
+++ b/api/@ohos.net.ethernet.d.ts
@@ -19,7 +19,7 @@ import {AsyncCallback, Callback} from "./basic";
* Provides interfaces to manage ethernet.
*
* @since 9
- * @syscap SystemCapability.Communication.NetManager.Ethernet
+ * @syscap SystemCapability.Communication.NetManager.Extension
*/
declare namespace ethernet {
/**
diff --git a/api/@ohos.net.http.d.ts b/api/@ohos.net.http.d.ts
index ce56e5554957fe12ba729defb9f8c3e8ae6abfaa..88537cab5304ecb8074a99c6f651fd2cbc7cfac8 100644
--- a/api/@ohos.net.http.d.ts
+++ b/api/@ohos.net.http.d.ts
@@ -98,14 +98,16 @@ declare namespace http {
/**
* Registers an observer for HTTP Response Header events.
*
- * @deprecated use on_headersReceive instead since 8.
+ * @deprecated since 8
+ * @useinstead on_headersReceive
*/
on(type: "headerReceive", callback: AsyncCallback