fix(ngdoc.js): update default directive restrict to 'A'

This commit is contained in:
rodyhaddad 2013-09-08 14:20:03 -04:00 committed by Pete Bacon Darwin
parent 26685782b3
commit 1567440665

View file

@ -714,7 +714,7 @@ Doc.prototype = {
html_usage_directive: function(dom){
var self = this;
dom.h('Usage', function() {
var restrict = self.restrict || 'AC';
var restrict = self.restrict || 'A';
if (restrict.match(/E/)) {
dom.html('<p>');