Skip to content
Snippets Groups Projects
Commit a7a64b83 authored by Alice Heaton's avatar Alice Heaton :speech_balloon:
Browse files

Fix typos

parent a4c2d119
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ from jsonfield import JSONField
class Dashboard(models.Model):
""" Model to represent a dashboard.
A Dashboard is defined by it's name, and
A Dashboard is defined by its name, and
a list of widget instances.
"""
name = models.CharField(
......@@ -21,7 +21,7 @@ class Dashboard(models.Model):
class WidgetInstance(models.Model):
""" Model to represent an instance of a widget.
A WidgetInstance is defined by it's widget type,
A WidgetInstance is defined by its widget type,
widget settings (stored as a JSON string),
the dashboard the instance is associated with,
and the position within that dashboard (row,
......
......@@ -35,7 +35,7 @@ class TestWidgetNoTemplateName(object):
class MockWidgetInstance(object):
""" A Mock class to represent a windget instance
""" A Mock class to represent a widget instance
Args:
widget_type: The widget type to associate with this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment