diff --git a/REFERENCE.md b/REFERENCE.md index 09b065737..68b7055d6 100644 --- a/REFERENCE.md +++ b/REFERENCE.md @@ -5619,7 +5619,7 @@ Alias of `Pattern[/(?i:\Ahttps?:\/\/.*\z)/]` Validate a host (FQDN or IP address) -Alias of `Variant[Stdlib::Fqdn, Stdlib::Ip::Address]` +Alias of `Variant[Stdlib::Fqdn, Stdlib::IP::Address]` ### `Stdlib::Http::Method` diff --git a/types/host.pp b/types/host.pp index 5b019b73e..46f349bac 100644 --- a/types/host.pp +++ b/types/host.pp @@ -1,2 +1,2 @@ # @summary Validate a host (FQDN or IP address) -type Stdlib::Host = Variant[Stdlib::Fqdn, Stdlib::Ip::Address] +type Stdlib::Host = Variant[Stdlib::Fqdn, Stdlib::IP::Address]