mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
Add code-spell spelling checks to CI (#8067)
Help find and fix silly spelling errors as they are added to the repo.
This commit is contained in:
committed by
GitHub
parent
78a2ed6bd8
commit
60fe7b4ca8
@ -19,7 +19,7 @@ WiFiClient+WiFiServer/ClientContext and WifiUdp/UdpContext using socket
|
||||
posix API. Further work will optionally propose native lwIP library
|
||||
instead.
|
||||
|
||||
Serial UART0 and UART1 are emulated via stdin/stdout/stderr. Therefor
|
||||
Serial UART0 and UART1 are emulated via stdin/stdout/stderr. Therefore
|
||||
stdin is connected to UART0(RX) and stdout is connected to UART0(TX).
|
||||
UART1(TX) writes to stderr. Reading from stdin happens in non-blocking
|
||||
raw mode, that means each character is directly injected into the UART
|
||||
|
@ -4225,7 +4225,7 @@ namespace Catch {
|
||||
ss << seed;
|
||||
ss >> config.rngSeed;
|
||||
if( ss.fail() )
|
||||
throw std::runtime_error( "Argment to --rng-seed should be the word 'time' or a number" );
|
||||
throw std::runtime_error( "Argument to --rng-seed should be the word 'time' or a number" );
|
||||
}
|
||||
}
|
||||
inline void setVerbosity( ConfigData& config, int level ) {
|
||||
@ -6649,7 +6649,7 @@ namespace Catch {
|
||||
Colour colourGuard( Colour::Red );
|
||||
Catch::cerr()
|
||||
<< "Tag name [" << tag << "] not allowed.\n"
|
||||
<< "Tag names starting with non alpha-numeric characters are reserved\n";
|
||||
<< "Tag names starting with non alphanumeric characters are reserved\n";
|
||||
}
|
||||
{
|
||||
Colour colourGuard( Colour::FileName );
|
||||
|
@ -188,7 +188,7 @@ TEST_CASE(TESTPRE "peek() returns -1 on EOF", TESTPAT)
|
||||
f.close();
|
||||
}
|
||||
|
||||
TEST_CASE(TESTPRE "seek() pase EOF returns error (#7323)", TESTPAT)
|
||||
TEST_CASE(TESTPRE "seek() past EOF returns error (#7323)", TESTPAT)
|
||||
{
|
||||
FS_MOCK_DECLARE(64, 8, 512, "");
|
||||
REQUIRE(FSTYPE.begin());
|
||||
|
Reference in New Issue
Block a user