doc(ngdoc): proper label for source and demo section

This commit is contained in:
Misko Hevery 2012-05-25 13:56:13 -07:00
parent 275e5335dc
commit 2356c21650

View file

@ -58,10 +58,10 @@ exports.Example.prototype.addSource = function(name, content) {
};
exports.Example.prototype.toHtml = function() {
return '<h1>Demo Source Code</h1>\n' +
return '<h1>Source</h1>\n' +
this.toHtmlEdit() +
this.toHtmlTabs() +
'<h1>Demo Source Code</h1>\n' +
'<h1>Demo</h1>\n' +
this.toHtmlEmbed();
};