Skip to content

Commit bf91cd5

Browse files
committed
Correct casing of Stdlib::IP::Address
While Puppet doesn't appear to care about IP vs Ip, but Kafo does and can't find the correct type. This aligns the usage with the actual name in the file. Fixes: fcbd426 ("Remove deprecated Stdlib::Compat::* data types")
1 parent 883ba57 commit bf91cd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5619,7 +5619,7 @@ Alias of `Pattern[/(?i:\Ahttps?:\/\/.*\z)/]`
56195619

56205620
Validate a host (FQDN or IP address)
56215621

5622-
Alias of `Variant[Stdlib::Fqdn, Stdlib::Ip::Address]`
5622+
Alias of `Variant[Stdlib::Fqdn, Stdlib::IP::Address]`
56235623

56245624
### <a name="Stdlib--Http--Method"></a>`Stdlib::Http::Method`
56255625

types/host.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# @summary Validate a host (FQDN or IP address)
2-
type Stdlib::Host = Variant[Stdlib::Fqdn, Stdlib::Ip::Address]
2+
type Stdlib::Host = Variant[Stdlib::Fqdn, Stdlib::IP::Address]

0 commit comments

Comments
 (0)