Index: Source/devtools/front_end/documentation/DocumentationView.js |
diff --git a/Source/devtools/front_end/documentation/DocumentationView.js b/Source/devtools/front_end/documentation/DocumentationView.js |
index 83bf923c636577c67cc82fd433ac1fd728ad8761..cd895e0d2caf58f64dbfb95817fc8fc640afe7e7 100644 |
--- a/Source/devtools/front_end/documentation/DocumentationView.js |
+++ b/Source/devtools/front_end/documentation/DocumentationView.js |
@@ -67,8 +67,8 @@ WebInspector.DocumentationView.prototype = { |
_createEmptyPage: function() |
{ |
this.element.textContent = ""; |
- var pageTitle = this.element.createChild("div", "documentation-page-title"); |
- pageTitle.textContent = "No documentation found"; |
+ var pageTitle = this.element.createChild("div", "documentation-not-found"); |
+ pageTitle.textContent = "No documentation found."; |
}, |
__proto__: WebInspector.View.prototype |