From 4324ea0dcd63f4c1c015eb060bbb73e1e9ff7df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20St=C3=B6r?= Date: Thu, 14 Sep 2017 20:46:22 +0200 Subject: [PATCH] Correct typo Fixes #2103 --- docs/en/sdcard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sdcard.md b/docs/en/sdcard.md index 61b6580c..248c2d2b 100644 --- a/docs/en/sdcard.md +++ b/docs/en/sdcard.md @@ -63,7 +63,7 @@ file.close() If the card doesn't work when calling `file.mount()` for the first time then re-try the command. It's possible that certain cards time out during the first initialization after power-up. -The logical drives are mounted at the root of a unified directory tree where the mount points distinguish between internal flash (`/FLASH`) and the card's paritions (`/SD0` to `/SD3`). Files are accessed via either the absolute hierarchical path or relative to the current working directory. It defaults to `/FLASH` and can be changed with `file.chdir(path)`. +The logical drives are mounted at the root of a unified directory tree where the mount points distinguish between internal flash (`/FLASH`) and the card's partitions (`/SD0` to `/SD3`). Files are accessed via either the absolute hierarchical path or relative to the current working directory. It defaults to `/FLASH` and can be changed with `file.chdir(path)`. Subdirectories are supported on FAT volumes only.