Skip to content

Commit 947d2d7

Browse files
committed
Fix spell check and astyle format issue
1 parent 21325e2 commit 947d2d7

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

connectivity/netsocket/tests/TESTS/network/emac/emac_TestNetworkStack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class EmacTestNetworkStack : public OnboardNetworkStack, private mbed::NonCopyab
191191

192192
/** Bind a specific address to a socket
193193
*
194-
* Binding a socket specifies the address and port on which to recieve
194+
* Binding a socket specifies the address and port on which to receive
195195
* data. If the IP address is zeroed, only the port is bound.
196196
*
197197
* @param handle Socket handle

connectivity/netsocket/tests/TESTS/network/wifi/wifi_tests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void wifi_connect_secure(void);
7272
/** Test WiFiInterface::connect() failing with wrong password. */
7373
void wifi_connect_secure_fail(void);
7474

75-
/** Test WiFiInterface::connect() - disconnect() repeatition works. */
75+
/** Test WiFiInterface::connect() - disconnect() repetition works. */
7676
void wifi_connect_disconnect_repeat(void);
7777

7878
/** Call WiFiInterface::scan() with null parameters to get number of networks available. */

connectivity/netsocket/tests/UNITTESTS/netsocket/EthernetInterface/test_EthernetInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ TEST_F(TestEthernetInterface, set_network)
179179
// Testing the getters makes sense now.
180180
EXPECT_CALL(*netStackIface, get_mac_address(_, _))
181181
.Times(1)
182-
.WillOnce(DoAll(SetArrayArgument<0>(macAddress, macAddress+NSAPI_MAC_SIZE), Return(macAddress)));
182+
.WillOnce(DoAll(SetArrayArgument<0>(macAddress, macAddress + NSAPI_MAC_SIZE), Return(macAddress)));
183183
EXPECT_EQ(std::string(macAddress), std::string(iface->get_mac_address()));
184184

185185
EXPECT_CALL(*netStackIface, get_ip_address(_))

connectivity/netsocket/tests/UNITTESTS/netsocket/IfaceDnsSocket/moduletest.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ OnboardNetworkStack &OnboardNetworkStack::get_default_instance()
4949
}
5050

5151
// Wrapper to avoid calling OnboardNetworkStack::get_default_instance() everywhere
52-
static OnboardNetworkStackMock &stackMock() {
52+
static OnboardNetworkStackMock &stackMock()
53+
{
5354
return OnboardNetworkStackMock::get_instance();
5455
}
5556

tools/test/travis-ci/doxy-spellchecker/ignore.en.pws

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,5 @@ chrono
116116
Hinnant
117117
Vin
118118
Vref
119+
ssid
119120
_doxy_

0 commit comments

Comments
 (0)