From ece2225800f58844e231fd64ef5de12cdcc7c108 Mon Sep 17 00:00:00 2001 From: Nova Vale Date: Tue, 17 Feb 2026 09:15:28 -0800 Subject: [PATCH] docs: fix duplicated word in lazyloading pattern --- docs/patterns/lazyloading.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/lazyloading.rst b/docs/patterns/lazyloading.rst index 658a1cd4..208601ab 100644 --- a/docs/patterns/lazyloading.rst +++ b/docs/patterns/lazyloading.rst @@ -73,7 +73,7 @@ function but internally imports the real function on first use:: def __call__(self, *args, **kwargs): return self.view(*args, **kwargs) -What's important here is is that `__module__` and `__name__` are properly +What's important here is that `__module__` and `__name__` are properly set. This is used by Flask internally to figure out how to name the URL rules in case you don't provide a name for the rule yourself.