Skip to content

Commit 1ff927d

Browse files
authored
Fix spelling typo under doc/faq (#7538)
This patch fixes some spelling typo found in doc/faq.
1 parent c33a6a2 commit 1ff927d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

doc/faq/a01-espcomm_sync-failed.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -313,14 +313,14 @@ example at 921600 baud, but with two reset retries.
313313

314314
Reset Method: nodemcu, reset retries
315315

316-
If you are interested how noodemcu reset method is implemented, then
316+
If you are interested how nodemcu reset method is implemented, then
317317
check circuit below. As indicated it does not pull to ground RTS and DTR
318318
lines once you open Serial Monitor in Arduino IDE.
319319

320320
.. figure:: pictures/a01-nodemcu-reset-implementation.png
321-
:alt: Implementation of noodemcu reset
321+
:alt: Implementation of nodemcu reset
322322

323-
Implementation of noodemcu reset
323+
Implementation of nodemcu reset
324324

325325
It consists of two transistors and resistors that you can locate on
326326
NodeMCU board on right. On left you can see complete circuit and the

doc/faq/a02-my-esp-crashes.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ If you don't have any code for troubleshooting, use the example below:
187187
Serial.println();
188188
Serial.println("Let's provoke the s/w wdt firing...");
189189
//
190-
// provoke an OOM, will be recorded as the last occured one
190+
// provoke an OOM, will be recorded as the last occurred one
191191
char* out_of_memory_failure = (char*)malloc(1000000);
192192
//
193193
// wait for s/w wdt in infinite loop below
@@ -310,11 +310,11 @@ Memory, memory, memory
310310
* If you use std libs like std::vector, make sure to call its ::reserve() method before filling it. This allows allocating only once, which reduces mem fragmentation, and makes sure that there are no empty unused slots left over in the container at the end.
311311

312312
Stack
313-
  The amount of stack in the ESP is tiny at only 4KB. For normal developement in large systems, it
313+
  The amount of stack in the ESP is tiny at only 4KB. For normal development in large systems, it
314314
is good practice to use and abuse the stack, because it is faster for allocation/deallocation, the scope of the object is well defined, and deallocation automatically happens in reverse order as allocation, which means no mem fragmentation. However, with the tiny amount of stack available in the ESP, that practice is not really viable, at least not for big objects.
315315
* Large objects that have internally managed memory, such as String, std::string, std::vector, etc, are ok on the stack, because they internally allocate their buffers on the heap.
316316
* Large arrays on the stack, such as uint8_t buffer[2048] should be avoided on the stack and be dynamically allocated (consider smart pointers).
317-
* Objects that have large data members, such as large arrays, should be avoided on the stack, and be dynamicaly allocated (consider smart pointers).
317+
* Objects that have large data members, such as large arrays, should be avoided on the stack, and be dynamically allocated (consider smart pointers).
318318

319319

320320
If at the Wall, Enter an Issue Report

doc/faq/a05-board-generator.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Additional Notes:
129129

130130
1. The boards.txt file will always contain the generic and esp8285 boards.
131131

132-
2. If boards.txt file exist and no backup copy named boards.txt.orig exist, the current boards.txt will be renamed to boards.txt.orig. Otherwise, the existing boards.txt is over-writen when you generate a new boards.txt file. Similar behavior for when generating a new boards.local.txt.
132+
2. If boards.txt file exist and no backup copy named boards.txt.orig exist, the current boards.txt will be renamed to boards.txt.orig. Otherwise, the existing boards.txt is over-written when you generate a new boards.txt file. Similar behavior for when generating a new boards.local.txt.
133133

134134
3. The boards in the boards.txt file will be in the order they were listed in your favorites file, specified by option ``--filter <file>``.
135135

doc/faq/readme.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ How can I get some extra KBs in flash ?
5555
About WPS
5656
~~~~~~~~~
5757

58-
From release 2.4.2 and ahead, not using WPS will give an exra ~4.5KB in
58+
From release 2.4.2 and ahead, not using WPS will give an extra ~4.5KB in
5959
heap.
6060

6161
In release 2.4.2 only, WPS is disabled by default and the board generator is

0 commit comments

Comments
 (0)