diff --git a/data/gnome-shell.schemas b/data/gnome-shell.schemas
index f183cb6f5..bd42bfa0d 100644
--- a/data/gnome-shell.schemas
+++ b/data/gnome-shell.schemas
@@ -64,7 +64,7 @@
gnome-shell
list
string
- [imports.ui.widget.ClockWidget,imports.ui.widget.AppsWidget,imports.ui.widget.DocsWidget]
+ [imports.ui.widget.ClockWidget,imports.ui.widget.AppsWidget,imports.ui.widget.RecentDocsWidget]
The widgets to display in the sidebar
diff --git a/js/ui/widget.js b/js/ui/widget.js
index d4f661c31..cb41e83f2 100644
--- a/js/ui/widget.js
+++ b/js/ui/widget.js
@@ -327,17 +327,17 @@ AppsWidget.prototype = {
}
};
-function DocsWidget() {
+function RecentDocsWidget() {
this._init.apply(this, arguments);
}
-DocsWidget.prototype = {
+RecentDocsWidget.prototype = {
__proto__ : LauncherWidget.prototype,
_init : function() {
Widget.prototype._init.apply(this, arguments);
- this.title = "Recent Docs";
+ this.title = "Recent Documents";
this.actor = new Big.Box({ spacing: 2 });
this._recentManager = Gtk.RecentManager.get_default();