From 85539606e10b6a5c386a2e9d1d51eb10151acdb8 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sat, 6 Mar 2021 20:16:38 +0000 Subject: [PATCH] Correct typos --- Tools/Create_Smooth_Font/Create_font/Create_font.pde | 2 +- examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino | 2 +- examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino | 2 +- examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino | 2 +- examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino | 2 +- examples/DMA test/Flash_Jpg_DMA/panda.h | 2 +- .../FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino | 2 +- .../LittleFS/Print_Smooth_Font/Print_Smooth_Font.ino | 2 +- .../SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino | 2 +- .../Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino | 2 +- examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Tools/Create_Smooth_Font/Create_font/Create_font.pde b/Tools/Create_Smooth_Font/Create_font/Create_font.pde index 6832248..c8e5560 100644 --- a/Tools/Create_Smooth_Font/Create_font/Create_font.pde +++ b/Tools/Create_Smooth_Font/Create_font/Create_font.pde @@ -147,7 +147,7 @@ int displayFontSize = 28; static final int[] unicodeBlocks = { // The list below has been created from the table here: https://en.wikipedia.org/wiki/Unicode_block // Remove // at start of lines below to include that unicode block, different code ranges can also be specified by - // editting the start and end-of-range values. Multiple lines from the list below can be included, limited only by + // editing the start and end-of-range values. Multiple lines from the list below can be included, limited only by // the final font file size! // Block range, //Block name, Code points, Assigned characters, Scripts diff --git a/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino b/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino index 60acdc4..11d00d2 100644 --- a/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino +++ b/examples/480 x 320/TFT_Meter_4/TFT_Meter_4.ino @@ -3,7 +3,7 @@ Needs Font 2 (also Font 4 if using large scale label) - Make sure all the required fonts are loaded by editting the + Make sure all the required fonts are loaded by editing the User_Setup.h file in the TFT_HX8357_Due library folder. ######################################################################### diff --git a/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino b/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino index 4b41327..14f75b3 100644 --- a/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino +++ b/examples/480 x 320/TFT_Print_Test/TFT_Print_Test.ino @@ -3,7 +3,7 @@ This sketch used font 2, 4, 7 - Make sure all the required fonts are loaded by editting the + Make sure all the required fonts are loaded by editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### diff --git a/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino b/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino index be51aee..a2e1aa1 100644 --- a/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino +++ b/examples/480 x 320/TFT_Rainbow480/TFT_Rainbow480.ino @@ -4,7 +4,7 @@ This sketch uses the GLCD, 2, 4, 6 fonts only. - Make sure all the required fonts are loaded by editting the + Make sure all the required fonts are loaded by editing the User_Setup.h file in the TFT_eSPI library folder. diff --git a/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino b/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino index 973efa5..133b65c 100644 --- a/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino +++ b/examples/480 x 320/UTFT_Demo_480x320/UTFT_Demo_480x320.ino @@ -8,7 +8,7 @@ This sketch uses the GLCD and font 2 only. - Make sure all the required fonts are loaded by editting the + Make sure all the required fonts are loaded by editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### diff --git a/examples/DMA test/Flash_Jpg_DMA/panda.h b/examples/DMA test/Flash_Jpg_DMA/panda.h index b4b5653..57c6134 100644 --- a/examples/DMA test/Flash_Jpg_DMA/panda.h +++ b/examples/DMA test/Flash_Jpg_DMA/panda.h @@ -2,7 +2,7 @@ http://tomeko.net/online_tools/file_to_hex.php?lang=en If needed, first resize and crop to an appropriate width and height - to suit your display with an image editting program such as IrfanView. + to suit your display with an image editing program such as IrfanView. You can also change the image "guality" to reduce the file size. diff --git a/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino b/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino index 230bb19..1c1f08d 100644 --- a/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino +++ b/examples/Smooth Fonts/FLASH_Array/Print_Smooth_Font/Print_Smooth_Font.ino @@ -15,7 +15,7 @@ https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane Make sure all the display driver and pin connenctions are correct by - editting the User_Setup.h file in the TFT_eSPI library folder. + editing the User_Setup.h file in the TFT_eSPI library folder. */ // The font is stored in an array within a sketch tab. diff --git a/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/Print_Smooth_Font.ino b/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/Print_Smooth_Font.ino index cda3f32..47c029e 100644 --- a/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/Print_Smooth_Font.ino +++ b/examples/Smooth Fonts/LittleFS/Print_Smooth_Font/Print_Smooth_Font.ino @@ -19,7 +19,7 @@ https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane Make sure all the display driver and pin connenctions are correct by - editting the User_Setup.h file in the TFT_eSPI library folder. + editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### ###### DON'T FORGET TO UPDATE THE User_Setup.h FILE IN THE LIBRARY ###### diff --git a/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino b/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino index c6dbb19..2732a9d 100644 --- a/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino +++ b/examples/Smooth Fonts/SD_Card/ESP32_Smooth_Font_SD/ESP32_Smooth_Font_SD.ino @@ -17,7 +17,7 @@ https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane Make sure all the display driver and pin connenctions are correct by - editting the User_Setup.h file in the TFT_eSPI library folder. + editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### ###### DON'T FORGET TO UPDATE THE User_Setup.h FILE IN THE LIBRARY ###### diff --git a/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino b/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino index 10f9197..e887de9 100644 --- a/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino +++ b/examples/Smooth Fonts/SPIFFS/Print_Smooth_Font/Print_Smooth_Font.ino @@ -22,7 +22,7 @@ https://en.wikipedia.org/wiki/Plane_(Unicode)#Basic_Multilingual_Plane Make sure all the display driver and pin connenctions are correct by - editting the User_Setup.h file in the TFT_eSPI library folder. + editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### ###### DON'T FORGET TO UPDATE THE User_Setup.h FILE IN THE LIBRARY ###### diff --git a/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino b/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino index 407c53f..b51d522 100644 --- a/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino +++ b/examples/Sprite/Sprite_RLE_Font_test/Sprite_RLE_Font_test.ino @@ -2,7 +2,7 @@ Display all the fast rendering fonts in a sprite Make sure all the display driver and pin comnections are correct by - editting the User_Setup.h file in the TFT_eSPI library folder. + editing the User_Setup.h file in the TFT_eSPI library folder. ######################################################################### ###### DON'T FORGET TO UPDATE THE User_Setup.h FILE IN THE LIBRARY ######