diff --git a/Cargo.lock b/Cargo.lock index 2cee3de..1f3f66f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -497,9 +497,9 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.5.1" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75" +checksum = "1a55ca5f3b68e41c979bf8c46a6f1da892ca4db8f94023ce0bd32407573b1ac0" [[package]] name = "ssh2" diff --git a/README.adoc b/README.adoc index 67bf202..c73aef4 100644 --- a/README.adoc +++ b/README.adoc @@ -57,13 +57,13 @@ task Echo { parameters { msg { required = true - help = "String to echo back to the client" + help = 'String to echo back to the client' type = string } } script { - inline = "echo {{msg}}" + inline = 'echo {{msg}}' } } ---- @@ -78,11 +78,12 @@ will be executed in the order that they are defined. .simple.zplan [source] ---- -task "tasks/echo.ztask" { - msg = "Hello from the wonderful world of zplans!" +task 'tasks/echo.ztask' { + msg = 'Hello from the wonderful world of zplans!' } -task "tasks/echo.ztask" { - msg = "This is nice" +task 'tasks/echo.ztask' { + msg = 'This is nice' } + ----