From a8906510c52689df18e77824a4ed5bc71c8f2cff Mon Sep 17 00:00:00 2001 From: Ward Bradt Date: Fri, 5 Jan 2018 20:20:12 -0500 Subject: [PATCH] fixed misspelling of "association" in base.py --- html5lib/treebuilders/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html5lib/treebuilders/base.py b/html5lib/treebuilders/base.py index 05d97ecc..15ba609e 100644 --- a/html5lib/treebuilders/base.py +++ b/html5lib/treebuilders/base.py @@ -28,7 +28,7 @@ def __init__(self, name): :arg name: The tag name associated with the node """ - # The tag name assocaited with the node + # The tag name associated with the node self.name = name # The parent of the current node (or None for the document node) self.parent = None