Skip to content

Commit d6c7b54

Browse files
committed
Fix typo in documentation
1 parent 47dc436 commit d6c7b54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ The following parameters are available in the `mysql::db` defined type:
11581158
##### <a name="-mysql--db--name"></a>`name`
11591159

11601160
The name of the database to create. Database names must:
1161-
* be longer than 64 characters.
1161+
* not be longer than 64 characters.
11621162
* not contain / \ or . characters.
11631163
* not contain characters that are not permitted in file names.
11641164
* not end with space characters.

manifests/db.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
# @param name
1313
# The name of the database to create. Database names must:
14-
# * be longer than 64 characters.
14+
# * not be longer than 64 characters.
1515
# * not contain / \ or . characters.
1616
# * not contain characters that are not permitted in file names.
1717
# * not end with space characters.
@@ -68,7 +68,7 @@
6868
# Ensure that the database name is valid.
6969
if $dbname !~ /^[^\/?%*:|\""<>.\s;]{1,64}$/ {
7070
$message = "The database name '${dbname}' is invalid. Values must:
71-
* be longer than 64 characters.
71+
* not be longer than 64 characters.
7272
* not contain // \\ or . characters.
7373
* not contain characters that are not permitted in file names.
7474
* not end with space characters."

0 commit comments

Comments
 (0)