X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/ed50737290662f6ef4016a7ea44da78ee1eff1e2..9e9ee449b41f4058640e2360b3b62a0ca12f4a65:/black.py?ds=inline diff --git a/black.py b/black.py index cc5075c..d048162 100644 --- a/black.py +++ b/black.py @@ -2258,7 +2258,7 @@ def right_hand_split( elif head.contains_multiline_strings() or tail.contains_multiline_strings(): raise CannotSplit( "The current optional pair of parentheses is bound to fail to " - "satisfy the splitting algorithm becase the head or the tail " + "satisfy the splitting algorithm because the head or the tail " "contains multiline strings which by definition never fit one " "line." ) @@ -2562,7 +2562,7 @@ def normalize_invisible_parens(node: Node, parens_after: Set[str]) -> None: def maybe_make_parens_invisible_in_atom(node: LN) -> bool: - """If it's safe, make the parens in the atom `node` invisible, recusively.""" + """If it's safe, make the parens in the atom `node` invisible, recursively.""" if ( node.type != syms.atom or is_empty_tuple(node)