Fix typo'd comment in SphinxComponentRegistry.add_html_math_renderer()

This commit is contained in:
Dominic Davis-Foster 2020-08-25 13:49:12 +01:00
parent 05ad7e8020
commit 2b646082d7

View File

@ -401,7 +401,7 @@ class SphinxComponentRegistry:
def load_extension(self, app: "Sphinx", extname: str) -> None:
"""Load a Sphinx extension."""
if extname in app.extensions: # alread loaded
if extname in app.extensions: # already loaded
return
if extname in EXTENSION_BLACKLIST:
logger.warning(__('the extension %r was already merged with Sphinx since '