0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-30 01:46:24 +01:00

Fixes minor typo in code comments

Easiest PR I ever opened.
This commit is contained in:
Andy Chosak 2019-12-16 16:51:44 -05:00 committed by Matt Westcott
parent 8238a33888
commit cbd0882354

View File

@ -17,7 +17,7 @@ __all__ = ['BaseStructBlock', 'StructBlock', 'StructValue']
class StructValue(collections.OrderedDict):
""" A class that generates a StructBlock value from provded sub-blocks """
""" A class that generates a StructBlock value from provided sub-blocks """
def __init__(self, block, *args):
super().__init__(*args)
self.block = block