diff --git a/public/command-line-arguments b/public/command-line-arguments index f389ab5..7fb2e79 100644 --- a/public/command-line-arguments +++ b/public/command-line-arguments @@ -131,7 +131,7 @@ build a binary with go build first.

-
$ go build command-line-arguments.go
+            
$ go build command-line-arguments.go
 $ ./command-line-arguments a b c d
 [./command-line-arguments a b c d]       
 [a b c d]
diff --git a/public/command-line-flags b/public/command-line-flags
index 5271740..9414b9e 100644
--- a/public/command-line-flags
+++ b/public/command-line-flags
@@ -175,7 +175,7 @@ binary directly.

-
$ go build command-line-flags.go
+            
$ go build command-line-flags.go
 
@@ -189,7 +189,7 @@ all flags.

-
$ ./command-line-flags -word=opt -numb=7 -fork -svar=flag
+            
$ ./command-line-flags -word=opt -numb=7 -fork -svar=flag
 word: opt
 numb: 7
 fork: true
diff --git a/public/environment-variables b/public/environment-variables
index a187f96..1fbccfc 100644
--- a/public/environment-variables
+++ b/public/environment-variables
@@ -160,7 +160,7 @@ program picks that value up.

-
$ BAR=2 go run environment-variables.go
+            
$ BAR=2 go run environment-variables.go
 FOO: 1
 BAR: 2
 ...
diff --git a/public/line-filters b/public/line-filters
index 5ba5b38..7d0b994 100644
--- a/public/line-filters
+++ b/public/line-filters
@@ -181,7 +181,7 @@ lowercase lines.

-
$ cat /tmp/lines | go run line-filters.go
+            
$ cat /tmp/lines | go run line-filters.go
 HELLO
 FILTER
 
diff --git a/public/select b/public/select index 8bcad92..86c2434 100644 --- a/public/select +++ b/public/select @@ -143,7 +143,7 @@ expected.

-
$ time go run select.go 
+            
$ time go run select.go 
 received one
 received two
 
diff --git a/public/time-formatting-parsing b/public/time-formatting-parsing index 50622d1..b3a8a5c 100644 --- a/public/time-formatting-parsing +++ b/public/time-formatting-parsing @@ -173,7 +173,7 @@ explaining the parsing problem.

-
$ go run time-formatting-parsing.go 
+            
$ go run time-formatting-parsing.go 
 2014-04-15T18:00:15-07:00
 2012-11-01 22:08:41 +0000 +0000
 6:00PM
diff --git a/public/worker-pools b/public/worker-pools
index e9fddc7..87cc85d 100644
--- a/public/worker-pools
+++ b/public/worker-pools
@@ -174,7 +174,7 @@ there are 3 workers operating concurrently.

-
$ time go run worker-pools.go 
+            
$ time go run worker-pools.go 
 worker 1 processing job 1
 worker 2 processing job 2
 worker 3 processing job 3