Correct a comment that had been cut and paste into multiple main.c files.
diff --git a/FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53/src/main.c b/FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53/src/main.c
index d13b2cf..dfee258 100644
--- a/FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53/src/main.c
+++ b/FreeRTOS/Demo/CORTEX_A53_64-bit_UltraScale_MPSoC/RTOSDemo_A53/src/main.c
@@ -122,7 +122,7 @@
  * When mainSELECTED_APPLICATION is set to 1 the comprehensive test and demo

  * application will be run.

  */

-#define mainSELECTED_APPLICATION	1

+#define mainSELECTED_APPLICATION	0

 

 /*-----------------------------------------------------------*/

 

diff --git a/FreeRTOS/Demo/CORTEX_M4F_MSP432_LaunchPad_IAR_CCS_Keil/Full_Demo/main_full.c b/FreeRTOS/Demo/CORTEX_M4F_MSP432_LaunchPad_IAR_CCS_Keil/Full_Demo/main_full.c
index 306d939..5e48c1b 100644
--- a/FreeRTOS/Demo/CORTEX_M4F_MSP432_LaunchPad_IAR_CCS_Keil/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/CORTEX_M4F_MSP432_LaunchPad_IAR_CCS_Keil/Full_Demo/main_full.c
@@ -284,12 +284,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Blinky_Demo/main_blinky.c
index 806c590..113aa71 100644
--- a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Blinky_Demo/main_blinky.c
@@ -173,12 +173,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Full_Demo/main_full.c b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Full_Demo/main_full.c
index 437abe0..eaeaf40 100644
--- a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_AtmelStudio/Full_Demo/main_full.c
@@ -246,12 +246,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

@@ -352,7 +350,7 @@
 		{

 			ulErrorFound = 1UL << 13UL;

 		}

-		

+

 		if( xAreTaskNotificationTasksStillRunning() != pdPASS )

 		{

 			ulErrorFound = 1UL << 14UL;

diff --git a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Blinky_Demo/main_blinky.c
index 806c590..113aa71 100644
--- a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Blinky_Demo/main_blinky.c
@@ -173,12 +173,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Full_Demo/main_full.c b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Full_Demo/main_full.c
index 437abe0..eaeaf40 100644
--- a/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/CORTEX_M7_SAMV71_Xplained_IAR_Keil/Full_Demo/main_full.c
@@ -246,12 +246,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

@@ -352,7 +350,7 @@
 		{

 			ulErrorFound = 1UL << 13UL;

 		}

-		

+

 		if( xAreTaskNotificationTasksStillRunning() != pdPASS )

 		{

 			ulErrorFound = 1UL << 14UL;

diff --git a/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Blinky_Demo/main_blinky.c
index 2acf7b7..27d7bb6 100644
--- a/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Blinky_Demo/main_blinky.c
@@ -170,12 +170,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Full_Demo/main_full.c b/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Full_Demo/main_full.c
index 120fc8a..3b1a5f4 100644
--- a/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/CORTEX_M7_STM32F7_STM32756G-EVAL_IAR_Keil/Full_Demo/main_full.c
@@ -254,12 +254,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/MSP430X_MSP430FR5969_LaunchPad_IAR_CCS/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/MSP430X_MSP430FR5969_LaunchPad_IAR_CCS/Blinky_Demo/main_blinky.c
index 41c8afb..64db5ef 100644
--- a/FreeRTOS/Demo/MSP430X_MSP430FR5969_LaunchPad_IAR_CCS/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/MSP430X_MSP430FR5969_LaunchPad_IAR_CCS/Blinky_Demo/main_blinky.c
@@ -173,12 +173,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Blinky_Demo/main_blinky.c
index 9c1850a..a10dac9 100644
--- a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Blinky_Demo/main_blinky.c
@@ -168,12 +168,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Full_Demo/main_full.c b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Full_Demo/main_full.c
index 8573176..5f9d942 100644
--- a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/Full_Demo/main_full.c
@@ -281,12 +281,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/lwIP_Demo/main_lwIP.c b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/lwIP_Demo/main_lwIP.c
index 355af07..91689d9 100644
--- a/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/lwIP_Demo/main_lwIP.c
+++ b/FreeRTOS/Demo/MicroBlaze_Kintex7_EthernetLite/RTOSDemo/src/lwIP_Demo/main_lwIP.c
@@ -166,12 +166,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
index 5c4cab2..bc3327b 100644
--- a/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
@@ -162,12 +162,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
index 6975a1a..333fd98 100644
--- a/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX100_RX113-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
@@ -280,12 +280,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
index 5c4cab2..bc3327b 100644
--- a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
@@ -162,12 +162,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index f4dc348..ff0aa5d 100644
--- a/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX100_RX113-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -277,12 +277,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
index 86707a0..146f715 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
@@ -160,12 +160,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
index df846da..2bb4615 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
@@ -253,12 +253,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
index 86707a0..146f715 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
@@ -160,12 +160,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index 02ed6fc..ade85d5 100644
--- a/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX200_RX231-RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -253,12 +253,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_blinky.c b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_blinky.c
index 987ce2e..03c60c7 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_blinky.c
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_blinky.c
@@ -173,12 +173,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_full.c b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_full.c
index abe45f3..6bb7d26 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_full.c
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_GCC_e2studio/src/main_full.c
@@ -266,12 +266,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_blinky.c b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_blinky.c
index 987ce2e..03c60c7 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_blinky.c
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_blinky.c
@@ -173,12 +173,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_full.c b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_full.c
index 4aac72a..3d5b100 100644
--- a/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_full.c
+++ b/FreeRTOS/Demo/RX600_RX64M_RSK_Renesas_e2studio/Source/main_full.c
@@ -266,12 +266,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
index d932097..667eed0 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Blinky_Demo/main_blinky.c
@@ -162,12 +162,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
index 401148d..4e5d1b3 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_GCC_e2studio_IAR/src/Full_Demo/main_full.c
@@ -282,12 +282,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
index d932097..667eed0 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Blinky_Demo/main_blinky.c
@@ -162,12 +162,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/

diff --git a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
index 8ee8908..824312e 100644
--- a/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
+++ b/FreeRTOS/Demo/RX700_RX71M_RSK_Renesas_e2studio/src/Full_Demo/main_full.c
@@ -282,12 +282,10 @@
 

 	/* If all is well, the scheduler will now be running, and the following

 	line will never be reached.  If the following line does execute, then

-	there was either insufficient FreeRTOS heap memory available for the idle

-	and/or timer tasks to be created, or vTaskStartScheduler() was called from

-	User mode.  See the memory management section on the FreeRTOS web site for

-	more details on the FreeRTOS heap http://www.freertos.org/a00111.html.  The

-	mode from which main() is called is set in the C start up code and must be

-	a privileged mode (not user mode). */

+	there was insufficient FreeRTOS heap memory available for the Idle and/or

+	timer tasks to be created.  See the memory management section on the

+	FreeRTOS web site for more details on the FreeRTOS heap

+	http://www.freertos.org/a00111.html. */

 	for( ;; );

 }

 /*-----------------------------------------------------------*/