mirror of https://github.com/siddontang/go.git
Merge pull request #3 from nkysg/master
This commit is contained in:
commit
a30862d58d
|
@ -121,7 +121,7 @@ func (s *AtomicString) Get() string {
|
|||
return str
|
||||
}
|
||||
|
||||
func (s *AtomicString) CompareAndSwap(oldval, newval string) (swqpped bool) {
|
||||
func (s *AtomicString) CompareAndSwap(oldval, newval string) (swapped bool) {
|
||||
s.mu.Lock()
|
||||
defer s.mu.Unlock()
|
||||
if s.str == oldval {
|
||||
|
|
Loading…
Reference in New Issue