From 5392565580cb71bd94a188b9345c2a8af67e081d Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Fri, 29 Oct 2021 19:49:30 +0800 Subject: [PATCH] settings.py: Fix docstring spelling --- src/djlint/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/djlint/settings.py b/src/djlint/settings.py index 458e324..a573fcc 100644 --- a/src/djlint/settings.py +++ b/src/djlint/settings.py @@ -37,7 +37,7 @@ def find_project_root(src: Path) -> Path: def load_gitignore(root: Path) -> PathSpec: - """Search upstream for a pyprojec.toml file.""" + """Search upstream for a .gitignore file.""" gitignore = root / ".gitignore" git_lines: List[str] = [] @@ -54,7 +54,7 @@ def load_gitignore(root: Path) -> PathSpec: def find_pyproject(root: Path) -> Optional[Path]: - """Search upstream for a pyprojec.toml file.""" + """Search upstream for a pyproject.toml file.""" pyproject = root / "pyproject.toml" @@ -138,7 +138,7 @@ def build_custom_blocks(custom_blocks: Union[str, None]) -> Optional[str]: class Config: - """Djling Config.""" + """Djlint Config.""" def __init__( self,