Skip to content

Commit

Permalink
typofix in get_matchin_node method
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelgsouza committed Oct 23, 2019
1 parent 1b846e1 commit db51575
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storyblok_richtext/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def render_node(self, item):
if mark:
data.append(utils.render_opening_tag(mark.get('tag')))

node = self.get_matchin_node(item)
node = self.get_matching_node(item)

if node is not None and node.get('tag'):
data.append(utils.render_opening_tag(node.get('tag')))
Expand Down Expand Up @@ -70,7 +70,7 @@ def get_matching_mark(self, item):

return None

def get_matchin_node(self, item):
def get_matching_node(self, item):
_type = item.get('type')
fn = self.nodes.get(_type)

Expand Down

0 comments on commit db51575

Please sign in to comment.