@@ -3480,24 +3480,24 @@ def ImageResize(
34803480 The `method` argument expects one of the following resize methods:
34813481
34823482 `ResizeMethod.NEAREST`, `"nearest"`:
3483- Nearest neighbor interpolation_ . The values of `antialias` and `precision`
3483+ ` Nearest neighbor interpolation`_ . The values of `antialias` and `precision`
34843484 are ignored.
34853485
34863486 `ResizeMethod.LINEAR`, `"linear"`, `"bilinear"`, `"trilinear"`, `"triangle"`:
3487- Linear interpolation_ . If `antialias` is ``True``, uses a triangular filter
3488- when downsampling.
3487+ ` Linear interpolation`_ . If `antialias` is ``True``, uses a triangular
3488+ filter when downsampling.
34893489
34903490 The following methods are NOT SUPPORTED in `kernel_fn` (only `init_fn` and
34913491 `apply_fn` work):
34923492
34933493 `ResizeMethod.CUBIC`, `"cubic"`, `"bicubic"`, `"tricubic"`:
3494- Cubic interpolation_ , using the Keys cubic kernel.
3494+ ` Cubic interpolation`_ , using the Keys cubic kernel.
34953495
34963496 `ResizeMethod.LANCZOS3`, `"lanczos3"`:
3497- Lanczos resampling_ , using a kernel of radius 3.
3497+ ` Lanczos resampling`_ , using a kernel of radius 3.
34983498
34993499 `ResizeMethod.LANCZOS5`, `"lanczos5"`:
3500- Lanczos resampling_ , using a kernel of radius 5.
3500+ ` Lanczos resampling`_ , using a kernel of radius 5.
35013501
35023502 .. _Nearest neighbor interpolation: https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation
35033503 .. _Linear interpolation: https://en.wikipedia.org/wiki/Bilinear_interpolation
0 commit comments