From c2ac5c5e25a625571e3d96086cf0b68cc6466e4e Mon Sep 17 00:00:00 2001 From: Noa Levi <275430404+lphuc2250gma@users.noreply.github.com> Date: Wed, 13 May 2026 15:48:52 +0000 Subject: [PATCH] docs: fix duplicated word in lazy loading docs --- 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.