Skip to content

Commit

Permalink
Renaming from nmutex to nsync.
Browse files Browse the repository at this point in the history
  • Loading branch information
vburenin committed Jan 29, 2016
1 parent 8c1f7e9 commit ea3914f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion namedmutex.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nmutex
package nsync

import (
"sync"
Expand Down
2 changes: 1 addition & 1 deletion namedmutex_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nmutex
package nsync

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion semaphore.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// primitive into Go language. It uses built-in channel with empty struct
// so it doesn't utilize a lot of memory to buffer acquired elements.

package nmutex
package nsync

import "time"

Expand Down
2 changes: 1 addition & 1 deletion semaphore_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nmutex
package nsync

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion trymutex.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nmutex
package nsync

import "time"

Expand Down
3 changes: 1 addition & 2 deletions trymutex_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package nmutex
package nsync

import (
"testing"
//"time"
"time"
)

Expand Down

0 comments on commit ea3914f

Please sign in to comment.