Rename 'delivery' step to 'deliver'

It was (incorrectly) named 'deliver' in documentation but 'delivery' in
code.
This commit is contained in:
fox.cpp 2019-04-11 17:54:59 +03:00
parent 63d0ab4eef
commit 5b4df6e9ee
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
3 changed files with 14 additions and 14 deletions

View file

@ -85,7 +85,7 @@ func deliveryTarget(modName string) (module.DeliveryTarget, error) {
return target, nil
}
func deliveryDirective(m *config.Map, node *config.Node) (interface{}, error) {
func deliverDirective(m *config.Map, node *config.Node) (interface{}, error) {
if len(node.Args) != 1 {
return nil, m.MatchErr("expected 1 argument")
}