From 92fa54822588ef2af453f1623d4dda48f4f2712b Mon Sep 17 00:00:00 2001 From: Stephen Morton Date: Sun, 24 Dec 2023 11:57:06 -0800 Subject: [PATCH] Fix a single-letter typo in a comment (#16699) --- mypy/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy/types.py b/mypy/types.py index d19766c1de34..fcdb61f9719b 100644 --- a/mypy/types.py +++ b/mypy/types.py @@ -56,7 +56,7 @@ # 1. types.LiteralType's serialize and deserialize methods: this method # needs to make sure it can convert the below types into JSON and back. # -# 2. types.LiteralType's 'alue_repr` method: this method is ultimately used +# 2. types.LiteralType's 'value_repr` method: this method is ultimately used # by TypeStrVisitor's visit_literal_type to generate a reasonable # repr-able output. #