Skip to content

Commit 454d969

Browse files
davepeakedpgeorge
authored andcommitted
docs/esp32: Fix string quoting consistency in SDCard mount example.
It appears that strings in the documentation are typically single quoted.
1 parent a16a330 commit 454d969

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/esp32/quickref.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ See :ref:`machine.SDCard <machine.SDCard>`. ::
589589

590590
# Slot 2 uses pins sck=18, cs=5, miso=19, mosi=23
591591
sd = machine.SDCard(slot=2)
592-
os.mount(sd, "/sd") # mount
592+
os.mount(sd, '/sd') # mount
593593

594594
os.listdir('/sd') # list directory contents
595595

0 commit comments

Comments
 (0)