File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class IntegrationMaterialSocialCards:
34
34
IS_THEME_MATERIAL : bool = False
35
35
36
36
def __init__ (self , mkdocs_config : Config , switch_force : bool = True ) -> None :
37
- """Integration instanciation .
37
+ """Integration instantiation .
38
38
39
39
Args:
40
40
mkdocs_config (Config): Mkdocs website configuration object.
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class GitRssPlugin(BasePlugin[RssPluginConfig]):
56
56
supports_multiple_instances = True
57
57
58
58
def __init__ (self ):
59
- """Instanciation ."""
59
+ """Instantiation ."""
60
60
# pages storage
61
61
self .pages_to_filter : list = []
62
62
# prepare output feeds
@@ -98,7 +98,7 @@ def on_config(self, config: MkDocsConfig) -> MkDocsConfig:
98
98
switch_force = self .config .use_material_social_cards ,
99
99
)
100
100
101
- # instanciate plugin tooling
101
+ # instantiate plugin tooling
102
102
self .util = Util (
103
103
use_git = self .config .use_git ,
104
104
integration_material_social_cards = self .integration_material_social_cards ,
Original file line number Diff line number Diff line change @@ -668,7 +668,7 @@ def get_site_url(mkdocs_config: MkDocsConfig) -> str | None:
668
668
:rtype: str or None
669
669
"""
670
670
# this method exists because the following line returns an empty string instead of \
671
- # None (because the key alwayus exists)
671
+ # None (because the key always exists)
672
672
defined_site_url = mkdocs_config .site_url
673
673
674
674
# cases
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def get_plugin_config_from_mkdocs(
45
45
not enabled into the mkdocs.yml.
46
46
:rtype: Config
47
47
"""
48
- # instanciate plugin
48
+ # instantiate plugin
49
49
cfg_mkdocs = load_config (str (mkdocs_yml_filepath .resolve ()))
50
50
51
51
plugins = cfg_mkdocs .plugins
You can’t perform that action at this time.
0 commit comments