From c8eaa53452ad3cfcdef052865d109ec2b92d36c1 Mon Sep 17 00:00:00 2001 From: cahrens Date: Mon, 24 Mar 2014 10:49:29 -0400 Subject: [PATCH] Fix typos. --- common/lib/xmodule/xmodule/js/src/html/edit.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/lib/xmodule/xmodule/js/src/html/edit.coffee b/common/lib/xmodule/xmodule/js/src/html/edit.coffee index 3f734a1bc0..1b9e0c95db 100644 --- a/common/lib/xmodule/xmodule/js/src/html/edit.coffee +++ b/common/lib/xmodule/xmodule/js/src/html/edit.coffee @@ -72,7 +72,7 @@ class @HTMLEditingDescriptor data['src'] = rewriteStaticLinks(data['src'], @base_asset_url, '/static/') saveImage: (data) => - # Called when the image plugin in saved. Input arg is the JSON version of the image data. + # Called when the image plugin is saved. Input arg is the JSON version of the image data. if data['src'] data['src'] = rewriteStaticLinks(data['src'], '/static/', @base_asset_url) @@ -82,12 +82,12 @@ class @HTMLEditingDescriptor data['href'] = rewriteStaticLinks(data['href'], @base_asset_url, '/static/') saveLink: (data) => - # Called when the link plugin in saved. Input arg is the JSON version of the link data. + # Called when the link plugin is saved. Input arg is the JSON version of the link data. if data['href'] data['href'] = rewriteStaticLinks(data['href'], '/static/', @base_asset_url) showCodeEditor: (codeEditor) => - # Called when the CodeMirror Editor is displayed to convert links to show satic prefix. + # Called when the CodeMirror Editor is displayed to convert links to show static prefix. # The input argument is the CodeMirror instance. content = rewriteStaticLinks(codeEditor.getValue(), @base_asset_url, '/static/') codeEditor.setValue(content)