Skip to content

Commit 6f15b04

Browse files
author
Seppo Takalo
committed
Fix review findings.
1 parent 0f0469d commit 6f15b04

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

features/cellular/framework/API/CellularNetwork.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*
12
* http://www.apache.org/licenses/LICENSE-2.0
23
*
34
* Unless required by applicable law or agreed to in writing, software

features/netsocket/Socket.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ class Socket {
112112
/** Send a message on a socket.
113113
*
114114
* The sendto() function sends a message through a connection-mode or connectionless-mode socket.
115-
* If the socket is in connectionless-mode, the message is sent to the address specified.
116-
* If the socket is in connection-mode, address is ignored.
115+
* If the socket is a connectionless-mode socket, the message is sent to the address specified.
116+
* If the socket is a connected-mode socket, address is ignored.
117117
*
118118
* By default, sendto blocks until data is sent. If socket is set to
119119
* non-blocking or times out, NSAPI_ERROR_WOULD_BLOCK is returned

features/netsocket/WiFiInterface.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include "netsocket/NetworkInterface.h"
2727
#include "netsocket/WiFiAccessPoint.h"
2828

29-
/** Common interface that between Wi-Fi devices.
29+
/** Common interface between Wi-Fi devices.
3030
*/
3131
class WiFiInterface: public virtual NetworkInterface {
3232
public:

0 commit comments

Comments
 (0)