diff options
author | David Peake <dave.peake@gmail.com> | 2022-08-15 20:17:41 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-08-17 12:00:35 +1000 |
commit | 454d969781564567864bb431f416df1fc1852765 (patch) | |
tree | c1fccc72e2d3d23f90e1997408a2974c1fc98a21 /docs/esp32 | |
parent | a16a330da54afd392252d7ea04139fd4702f48f8 (diff) | |
download | micropython-454d969781564567864bb431f416df1fc1852765.tar.gz micropython-454d969781564567864bb431f416df1fc1852765.zip |
docs/esp32: Fix string quoting consistency in SDCard mount example.
It appears that strings in the documentation are typically single quoted.
Diffstat (limited to 'docs/esp32')
-rw-r--r-- | docs/esp32/quickref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/esp32/quickref.rst b/docs/esp32/quickref.rst index 3cbb673c04..1529c0ef49 100644 --- a/docs/esp32/quickref.rst +++ b/docs/esp32/quickref.rst @@ -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 |