Skip to content

Commit

Permalink
Updated deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrukh committed Feb 25, 2012
1 parent 467ecb5 commit 8e7d0eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/abort/abort.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"goneuro"
"github.com/jbrukh/goneuro"
"fmt"
"os"
"time"
Expand Down
4 changes: 2 additions & 2 deletions examples/streamer/streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"goneuro"
"github.com/jbrukh/goneuro"
"time"
)

Expand All @@ -23,6 +23,6 @@ func main() {

startNanos := time.Now()
for {
fmt.Println(time.Now().Sub(startNanos), <-data)
fmt.Println(time.Now().Sub(startNanos).Nanoseconds(), <-data)
}
}

0 comments on commit 8e7d0eb

Please sign in to comment.