@@ -173,9 +173,9 @@ pixel, the Python Imaging Library provides different resampling *filters*.
173173.. data :: Resampling.BOX
174174 :noindex:
175175
176- Each pixel of source image contributes to one pixel of the
176+ Each pixel of the source image contributes to one pixel of the
177177 destination image with identical weights.
178- For upscaling is equivalent of :data: `Resampling.NEAREST `.
178+ For upscaling, this is equivalent to :data: `Resampling.NEAREST `.
179179 This filter can only be used with the :py:meth: `~PIL.Image.Image.resize `
180180 and :py:meth: `~PIL.Image.Image.thumbnail ` methods.
181181
@@ -184,7 +184,7 @@ pixel, the Python Imaging Library provides different resampling *filters*.
184184.. data :: Resampling.BILINEAR
185185 :noindex:
186186
187- For resize calculate the output pixel value using linear interpolation
187+ For resize, calculate the output pixel value using linear interpolation
188188 on all pixels that may contribute to the output value.
189189 For other transformations linear interpolation over a 2x2 environment
190190 in the input image is used.
@@ -202,7 +202,7 @@ pixel, the Python Imaging Library provides different resampling *filters*.
202202.. data :: Resampling.BICUBIC
203203 :noindex:
204204
205- For resize calculate the output pixel value using cubic interpolation
205+ For resize, calculate the output pixel value using cubic interpolation
206206 on all pixels that may contribute to the output value.
207207 For other transformations cubic interpolation over a 4x4 environment
208208 in the input image is used.
0 commit comments