diff options
author | lukechampine <luke.champine@gmail.com> | 2016-03-30 23:29:28 -0400 |
---|---|---|
committer | lukechampine <luke.champine@gmail.com> | 2016-03-30 23:38:48 -0400 |
commit | 095fb3064b93aed5decf2d1a8ae03745a265e418 (patch) | |
tree | cb25fa30729462ac40a7b770cd8bfe1cb10ae762 | |
parent | add Santa Claus problem example (diff) | |
download | stm-095fb3064b93aed5decf2d1a8ae03745a265e418.tar.gz stm-095fb3064b93aed5decf2d1a8ae03745a265e418.tar.xz |
golint
-rw-r--r-- | stm.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ /* -package stm provides Software Transactional Memory operations for Go. This is +Package stm provides Software Transactional Memory operations for Go. This is an alternative to the standard way of writing concurrent code (channels and mutexes). STM makes it easy to perform arbitrarily complex operations in an atomic fashion. One of its primary advantages over traditional locking is that |