From 51bc2b8288c2c581ee82931d90031f80eeb7c0c1 Mon Sep 17 00:00:00 2001 From: nakano Date: Mon, 9 Jun 2025 10:50:50 +0900 Subject: [PATCH] Fix typo in backend_ps.py comment: change 'and them scale them' to 'and then scale them' --- lib/matplotlib/backends/backend_ps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/backends/backend_ps.py b/lib/matplotlib/backends/backend_ps.py index f6b8455a15a7..ea5868387918 100644 --- a/lib/matplotlib/backends/backend_ps.py +++ b/lib/matplotlib/backends/backend_ps.py @@ -406,7 +406,7 @@ class RendererPS(_backend_pdf_ps.RendererPDFPSBase): def __init__(self, width, height, pswriter, imagedpi=72): # Although postscript itself is dpi independent, we need to inform the # image code about a requested dpi to generate high resolution images - # and them scale them before embedding them. + # and then scale them before embedding them. super().__init__(width, height) self._pswriter = pswriter if mpl.rcParams['text.usetex']: