diff options
author | nfagerlund <nick.fagerlund@gmail.com> | 2011-05-26 10:07:48 -0700 |
---|---|---|
committer | nfagerlund <nick.fagerlund@gmail.com> | 2011-05-26 10:07:48 -0700 |
commit | 6a1b6e0656c6b3939e48bcd2f558deb343bddb7b (patch) | |
tree | dacae5a818aa6b3e659c82ef048a59b6dcebd4a2 /lib/puppet/interface/documentation.rb | |
parent | f50da8bec7280a2816d9d967152ff83a2e888374 (diff) | |
parent | 53af6f3b97af07f77cb084bad179a37d281cf8d6 (diff) | |
download | puppet-6a1b6e0656c6b3939e48bcd2f558deb343bddb7b.tar.gz puppet-6a1b6e0656c6b3939e48bcd2f558deb343bddb7b.tar.xz puppet-6a1b6e0656c6b3939e48bcd2f558deb343bddb7b.zip |
Merge branch 'ticket/2.7.x/7561-help_for_all_faces' into 2.7.x
Diffstat (limited to 'lib/puppet/interface/documentation.rb')
-rw-r--r-- | lib/puppet/interface/documentation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/interface/documentation.rb b/lib/puppet/interface/documentation.rb index 48e9a8b1a..aedcc1c24 100644 --- a/lib/puppet/interface/documentation.rb +++ b/lib/puppet/interface/documentation.rb @@ -78,7 +78,7 @@ class Puppet::Interface return nil if @description.nil? lines = @description.split("\n") grab = [5, lines.index('') || 5].min - @short_description = lines[0, grab].join("\n") + @short_description = lines[0, grab].join("\n") + ' [...]' end @short_description end |