From c4b9927b0af75ea4e1856a348dd9d15ac4bde92c Mon Sep 17 00:00:00 2001 From: Joseph Fox-Rabinovitz Date: Tue, 27 Sep 2016 12:46:19 -0400 Subject: [PATCH] Missing backtick [ci skip] --- docs/handbook/writing-your-own-file-decoder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/handbook/writing-your-own-file-decoder.rst b/docs/handbook/writing-your-own-file-decoder.rst index 1affdc40d..f72851179 100644 --- a/docs/handbook/writing-your-own-file-decoder.rst +++ b/docs/handbook/writing-your-own-file-decoder.rst @@ -14,7 +14,7 @@ itself. Such plug-ins usually have names like Pillow decodes files in 2 stages: 1. It loops over the available image plugins in the loaded order, and - calls the plugin's ``accept` function with the first 16 bytes of + calls the plugin's ``accept`` function with the first 16 bytes of the file. If the ``accept`` function returns true, the plugin's ``_open`` method is called to set up the image metadata and image tiles. The ``_open`` method is not for decoding the actual image