docs: fix duplicated word in lazyloading pattern

This commit is contained in:
Nova Vale 2026-02-17 09:15:28 -08:00
parent d98eb69a35
commit ece2225800

View file

@ -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.