1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

BUG: Correctly spell Cabability (#582)

This commit is contained in:
Tom Limoncelli
2020-01-12 11:24:10 -05:00
committed by GitHub
parent 7df73b187c
commit 2c0361b0d5
4 changed files with 16 additions and 16 deletions

View File

@@ -53,8 +53,8 @@ const (
var providerCapabilities = map[string]map[Capability]bool{}
// ProviderHasCabability returns true if provider has capability.
func ProviderHasCabability(pType string, cap Capability) bool {
// ProviderHasCapability returns true if provider has capability.
func ProviderHasCapability(pType string, cap Capability) bool {
if providerCapabilities[pType] == nil {
return false
}