Skip to content

Commit e01ec23

Browse files
committed
Fix display of "@summary" in generated REFERENCE
1 parent bc2d1da commit e01ec23

File tree

7 files changed

+8
-16
lines changed

7 files changed

+8
-16
lines changed

REFERENCE.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444

4545
#### Public Resource types
4646

47-
* [`mysql_grant`](#mysql_grant): @summary Manage a MySQL user's rights.
47+
* [`mysql_grant`](#mysql_grant): Manage a MySQL user's rights.
4848
* [`mysql_login_path`](#mysql_login_path): Manage a MySQL login path.
4949
* [`mysql_plugin`](#mysql_plugin): Manage MySQL plugins.
50-
* [`mysql_user`](#mysql_user): @summary Manage a MySQL user. This includes management of users password as well as privileges.
50+
* [`mysql_user`](#mysql_user): Manage a MySQL user. This includes management of users password as well as privileges.
5151

5252
#### Private Resource types
5353

@@ -1283,7 +1283,6 @@ Default value: `undef`
12831283

12841284
### <a name="mysql_grant"></a>`mysql_grant`
12851285

1286-
@summary
12871286
Manage a MySQL user's rights.
12881287

12891288
#### Properties
@@ -1483,7 +1482,6 @@ usually discover the appropriate provider for your platform.
14831482

14841483
### <a name="mysql_user"></a>`mysql_user`
14851484

1486-
@summary
14871485
Manage a MySQL user. This includes management of users password as well as privileges.
14881486

14891487
#### Properties

lib/puppet/type/mysql_database.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Puppet::Type.newtype(:mysql_database) do
44
@doc = <<-PUPPET
5-
@summary
6-
Manage a MySQL database.
5+
@summary Manage a MySQL database.
76
87
@api private
98
PUPPET

lib/puppet/type/mysql_datadir.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Puppet::Type.newtype(:mysql_datadir) do
44
@doc = <<-PUPPET
5-
@summary
6-
Manage MySQL datadirs with mysql_install_db OR mysqld (5.7.6 and above).
5+
@summary Manage MySQL datadirs with mysql_install_db OR mysqld (5.7.6 and above).
76
87
@api private
98
PUPPET

lib/puppet/type/mysql_grant.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Puppet::Type.newtype(:mysql_grant) do
44
@doc = <<-PUPPET
5-
@summary
6-
Manage a MySQL user's rights.
5+
@summary Manage a MySQL user's rights.
76
PUPPET
87
ensurable
98

lib/puppet/type/mysql_login_path.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
name: 'mysql_login_path',
77

88
docs: <<-DESCRIPTION,
9-
@summary
10-
Manage a MySQL login path.
9+
@summary Manage a MySQL login path.
1110
@see
1211
https://dev.mysql.com/doc/refman/8.0/en/mysql-config-editor.html
1312
@example

lib/puppet/type/mysql_plugin.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
Puppet::Type.newtype(:mysql_plugin) do
44
@doc = <<-PUPPET
5-
@summary
6-
Manage MySQL plugins.
5+
@summary Manage MySQL plugins.
76
87
@example
98
mysql_plugin { 'some_plugin':

lib/puppet/type/mysql_user.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
# This has to be a separate type to enable collecting
44
Puppet::Type.newtype(:mysql_user) do
55
@doc = <<-PUPPET
6-
@summary
7-
Manage a MySQL user. This includes management of users password as well as privileges.
6+
@summary Manage a MySQL user. This includes management of users password as well as privileges.
87
PUPPET
98

109
ensurable

0 commit comments

Comments
 (0)