From 414173248d8d10ed7eb30b7ab3575d0885df14f8 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 10 Nov 2021 06:16:24 +1100 Subject: [PATCH] docs: fix simple typo, seperate -> separate There is a small typo in haml/parse.py. Should read `separate` rather than `seperate`. --- haml/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haml/parse.py b/haml/parse.py index f52b21c..6b8b770 100644 --- a/haml/parse.py +++ b/haml/parse.py @@ -143,7 +143,7 @@ def _parse_buffer(self): if line: - # We track the inter-line depth seperate from the intra-line depth + # We track the inter-line depth separate from the intra-line depth # so that indentation due to whitespace always results in more # depth in the graph than many nested nodes from a single line. inter_depth = len(raw_line) - len(line)