docs/esp32: Fix string quoting consistency in SDCard mount example.

It appears that strings in the documentation are typically single quoted.
pull/8713/merge
David Peake 2022-08-15 20:17:41 +10:00 zatwierdzone przez Damien George
rodzic a16a330da5
commit 454d969781
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -589,7 +589,7 @@ See :ref:`machine.SDCard <machine.SDCard>`. ::
# Slot 2 uses pins sck=18, cs=5, miso=19, mosi=23
sd = machine.SDCard(slot=2)
os.mount(sd, "/sd") # mount
os.mount(sd, '/sd') # mount
os.listdir('/sd') # list directory contents