Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmelsayed authored May 6, 2019
1 parent 476884e commit ddb1b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Azure.Functions.Cli/Kubernetes/KubernetesHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static void ValidateKubernetesName(string name)
}
else if (!regEx.IsMatch(name))
{
throw new CliException($"Kubernetes namemust match {regExValue}.\n" + kNameDoc);
throw new CliException($"Kubernetes name must match {regExValue}.\n" + kNameDoc);
}
}

Expand Down Expand Up @@ -504,4 +504,4 @@ private static ConfigMapV1 GetConfigMap(string name, string @namespace, IDiction
};
}
}
}
}

0 comments on commit ddb1b4c

Please sign in to comment.