From 6f8da1da967d5c5f464435044740ef9e81d99b95 Mon Sep 17 00:00:00 2001 From: Jim Bennett Date: Mon, 7 Jun 2021 20:31:38 -0700 Subject: [PATCH] Update README.md --- 1-getting-started/lessons/2-deeper-dive/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-getting-started/lessons/2-deeper-dive/README.md b/1-getting-started/lessons/2-deeper-dive/README.md index a8730269..ec67ac70 100644 --- a/1-getting-started/lessons/2-deeper-dive/README.md +++ b/1-getting-started/lessons/2-deeper-dive/README.md @@ -120,7 +120,7 @@ Microcontrollers usually have two types of memory - program memory and random-ac Program memory is non-volatile, which means whatever is written to it stays when there is no power to the device. This is the memory that stores your program code. -RAM is the memory used by the program to run, containing variables allocated by your program and data gathered from peripherals. RAM is volatile, when the power goes out the content is lost, effectively resetting your program. +RAM is the memory used by the program to run, containing variables allocated by your program and data gathered from peripherals. RAM is volatile, when the power goes out the contents are lost, effectively resetting your program. > 🎓 Program memory stores your code and stays when there is no power.