Commit 8b1bab75 by Calen Pennington

Fixing up comments on xmodule components

parent 29cf0976
...@@ -102,7 +102,7 @@ class HTMLSnippet(object): ...@@ -102,7 +102,7 @@ class HTMLSnippet(object):
def get_html(self): def get_html(self):
""" """
Return the html used to edit this module Return the html used to display this snippet
""" """
raise NotImplementedError("get_html() must be provided by specific modules") raise NotImplementedError("get_html() must be provided by specific modules")
...@@ -425,7 +425,7 @@ class XModuleDescriptor(Plugin, HTMLSnippet): ...@@ -425,7 +425,7 @@ class XModuleDescriptor(Plugin, HTMLSnippet):
# =============================== Testing =================================== # =============================== Testing ===================================
def get_sample_state(self): def get_sample_state(self):
""" """
Return a list of tuples of instance_state, shared_state. Each tuple defines a test/sample case for this module Return a list of tuples of instance_state, shared_state. Each tuple defines a sample case for this module
""" """
return [('{}', '{}')] return [('{}', '{}')]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment