Fix spelling error

This commit is contained in:
Erik Johnson 2018-06-24 13:27:09 -05:00
parent 830a624ce8
commit 65c575ae9c
No known key found for this signature in database
GPG key ID: 5E5583C437808F3F

View file

@ -190,7 +190,7 @@ Mocking Filehandles
Opening files in Salt is done using ``salt.utils.files.fopen()``. When testing
code that reads from files, the ``mock_open`` helper can be used to mock
filehandles. Note that is not the samw ``mock_open`` as
filehandles. Note that is not the same ``mock_open`` as
:py:func:`unittest.mock.mock_open` from the Python standard library, but rather
a separate implementation which has additional functionality.