Skip to content

Commit fd64f11

Browse files
committed
Replace use of "ie:" with "eg:"
Closes #36 Closes #46
1 parent 4ab27b4 commit fd64f11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The core of how `gosu` works is stolen directly from how Docker/libcontainer its
99
```console
1010
$ gosu
1111
Usage: ./gosu user-spec command [args]
12-
ie: ./gosu tianon bash
12+
eg: ./gosu tianon bash
1313
./gosu nobody:root bash -c 'whoami && id'
1414
./gosu 1000:1 id
1515

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func version() string {
2626
func usage() string {
2727
t := template.Must(template.New("usage").Parse(`
2828
Usage: {{ .Self }} user-spec command [args]
29-
ie: {{ .Self }} tianon bash
29+
eg: {{ .Self }} tianon bash
3030
{{ .Self }} nobody:root bash -c 'whoami && id'
3131
{{ .Self }} 1000:1 id
3232

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e
33

44
usage() {
55
echo "usage: $1 gosu-binary"
6-
echo " ie: $1 ./gosu-amd64"
6+
echo " eg: $1 ./gosu-amd64"
77
}
88

99
gosu="$1"

0 commit comments

Comments
 (0)