diff --git a/content/gettingstarted/programming/first-project.md b/content/gettingstarted/programming/first-project.md index c3fb47a..5b40ad6 100644 --- a/content/gettingstarted/programming/first-project.md +++ b/content/gettingstarted/programming/first-project.md @@ -119,5 +119,4 @@ If you need to remove files from your device you have two options, either connec import os os.fsformat('/flash') - ``` diff --git a/content/gettingstarted/programming/safeboot.md b/content/gettingstarted/programming/safeboot.md index 9c38c3d..29a190b 100644 --- a/content/gettingstarted/programming/safeboot.md +++ b/content/gettingstarted/programming/safeboot.md @@ -36,7 +36,6 @@ If problems occur within the filesystem or you wish to factory reset your module >>> import os >>> os.fsformat('flash') - ``` {{% hint style="danger" %}} diff --git a/content/tutorials/lte/firmware.md b/content/tutorials/lte/firmware.md index 70e0d72..fcb5b54 100644 --- a/content/tutorials/lte/firmware.md +++ b/content/tutorials/lte/firmware.md @@ -72,7 +72,7 @@ To transfer the firmware files onto the SD card you have two options: from machine import SD sd = SD() -os.fsformat('/sd') #format SD card +os.fsformat('/sd') # format SD card from machine import SD sd = SD() fs = os.mkfat(sd)