From 8b1bab75bd98ce587dfe3bd8b4ca183b7ddce0a6 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 25 Jul 2012 10:10:17 -0400 Subject: [PATCH] Fixing up comments on xmodule components --- common/lib/xmodule/xmodule/x_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lib/xmodule/xmodule/x_module.py b/common/lib/xmodule/xmodule/x_module.py index c504320f7c..7fd0b04f94 100644 --- a/common/lib/xmodule/xmodule/x_module.py +++ b/common/lib/xmodule/xmodule/x_module.py @@ -102,7 +102,7 @@ class HTMLSnippet(object): 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") @@ -425,7 +425,7 @@ class XModuleDescriptor(Plugin, HTMLSnippet): # =============================== Testing =================================== 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 [('{}', '{}')]