Skip to content

Commit 0f0469d

Browse files
Mel WeedSeppo Takalo
authored andcommitted
editorial changes
1 parent b79b608 commit 0f0469d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

features/netsocket/WiFiInterface.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
/** @file WifiInterface.h Common interface that is shared between Wi-Fi devices */
17+
/** @file WifiInterface.h Common interface tbetween Wi-Fi devices */
1818
/** @addtogroup netinterface
1919
* @{
2020
*/
@@ -26,13 +26,13 @@
2626
#include "netsocket/NetworkInterface.h"
2727
#include "netsocket/WiFiAccessPoint.h"
2828

29-
/** Common interface that is shared between Wi-Fi devices.
29+
/** Common interface that between Wi-Fi devices.
3030
*/
3131
class WiFiInterface: public virtual NetworkInterface {
3232
public:
3333
/** Get the default Wi-Fi interface.
3434
*
35-
* This is provided as a weak method so applications can override.
35+
* This is provided as a weak method so applications can override it.
3636
* Default behavior is to get the target's default interface, if
3737
* any.
3838
*
@@ -53,7 +53,7 @@ class WiFiInterface: public virtual NetworkInterface {
5353

5454
/** Set the Wi-Fi network channel.
5555
*
56-
* @param channel Channel on which the connection is to be made, or 0 for any (Default: 0).
56+
* @param channel Channel to make the connection, or 0 for any (Default: 0).
5757
* @return NSAPI_ERROR_OK on success, or error code on failure.
5858
*/
5959
virtual nsapi_error_t set_channel(uint8_t channel) = 0;
@@ -70,7 +70,7 @@ class WiFiInterface: public virtual NetworkInterface {
7070
* @param ssid Name of the network to connect to.
7171
* @param pass Security passphrase to connect to the network.
7272
* @param security Type of encryption for connection (Default: NSAPI_SECURITY_NONE).
73-
* @param channel Channel on which the connection is to be made, or 0 for any (Default: 0).
73+
* @param channel Channel to make the connection, or 0 for any (Default: 0).
7474
* @return NSAPI_ERROR_OK on success, or error code on failure.
7575
*/
7676
virtual nsapi_error_t connect(const char *ssid, const char *pass,
@@ -116,7 +116,7 @@ class WiFiInterface: public virtual NetworkInterface {
116116

117117
/** Get the target's default Wi-Fi interface.
118118
*
119-
* This is provided as a weak method so targets can override. The
119+
* This is provided as a weak method so targets can override it. The
120120
* default implementation returns NULL.
121121
*
122122
* @return pointer to interface, if any.

0 commit comments

Comments
 (0)