From 19d25099efb187afe6a7043475c5051526f08ba1 Mon Sep 17 00:00:00 2001 From: JohnathanComet <123962640+JohnathanComet@users.noreply.github.com> Date: Mon, 30 Jan 2023 09:06:10 -0500 Subject: [PATCH] Fixed typo (shwo -> show) Helps improve readability of comments --- src/reportlab/lib/codecharts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reportlab/lib/codecharts.py b/src/reportlab/lib/codecharts.py index c429f393..c13bf745 100644 --- a/src/reportlab/lib/codecharts.py +++ b/src/reportlab/lib/codecharts.py @@ -198,7 +198,7 @@ def __init__(self, row, faceName, encodingName): font = cidfonts.CIDFont(self.faceName, self.encodingName) pdfmetrics.registerFont(font) except: - # fall back to English and at least shwo we can draw the boxes + # fall back to English and at least show we can draw the boxes self.faceName = 'Helvetica' self.encodingName = 'WinAnsiEncoding' self.fontName = self.faceName + '-' + self.encodingName @@ -252,7 +252,7 @@ def __init__(self, row, faceName, encodingName): font = cidfonts.CIDFont(self.faceName, self.encodingName) pdfmetrics.registerFont(font) except: - # fall back to English and at least shwo we can draw the boxes + # fall back to English and at least show we can draw the boxes self.faceName = 'Helvetica' self.encodingName = 'WinAnsiEncoding' self.fontName = self.faceName + '-' + self.encodingName