Skip to content

Commit a1ed11d

Browse files
committed
fix typos
1 parent 9f46401 commit a1ed11d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ provides the summon executable command (it's main() function is in
7676
summon/summon.go). The library provides the command-line interface, so no
7777
coding is necessary in the asset repo.
7878

79-
Summon also provides a boostrapping feature in the scaffold command.
79+
Summon also provides a bootstrapping feature in the scaffold command.
8080

8181
> New in v0.13.0
8282
@@ -252,7 +252,7 @@ go install [your-go-repo-module]/summon@latest
252252

253253
### Makefile Library
254254

255-
In makefiles it can be useful to centralize certain libraries, notice how
255+
In a makefile it can be useful to centralize certain libraries, notice how
256256
summon returns the path ot where the resource was instantiated:
257257

258258
```bash
@@ -500,10 +500,10 @@ If the result of using args is a string representation of an array, like
500500

501501
> New in v0.16.0
502502

503-
Swalowargs will consume all arguments. Use it to capture unwanted arguments
503+
`swallowargs` will consume all arguments. Use it to capture unwanted arguments
504504
that would be added by your user. This would be used when you want tight
505-
control of the arguments and not let the user add unknown arguments to the exec
506-
handle (which is the summon default).
505+
control of the arguments and not let the user append unknown arguments to the
506+
exec handle (which is what summon does by default).
507507

508508
##### Run Function
509509

@@ -529,7 +529,7 @@ exec:
529529
# ^ used to compute the volumes.
530530
```
531531

532-
When inovking `summon run ls`, summon will first invoke:
532+
When invoking `summon run ls`, summon will first invoke:
533533

534534
`bash -c 'echo -v current_dir:/app'` which yields `-v current_dir:/app` and
535535
then call the `ls` handle to produce:
@@ -579,7 +579,7 @@ Also, a [cobra](https://github.com/spf13/cobra) based program (kubectl).
579579
exec:
580580
handles:
581581
# tanka delegates it's completion to posener/complete. Fake a completion
582-
# call by setting the COMP_LINE enviroment var.
582+
# call by setting the COMP_LINE environment var.
583583
# delegate this to a simple bash-c handle
584584
tk:
585585
cmd: &bash-c [bash, -c] # here bash -c is used to test, but normally this is a complex

0 commit comments

Comments
 (0)