aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlukechampine <luke.champine@gmail.com>2016-03-30 23:29:28 -0400
committerlukechampine <luke.champine@gmail.com>2016-03-30 23:38:48 -0400
commit095fb3064b93aed5decf2d1a8ae03745a265e418 (patch)
treecb25fa30729462ac40a7b770cd8bfe1cb10ae762
parentadd Santa Claus problem example (diff)
downloadstm-095fb3064b93aed5decf2d1a8ae03745a265e418.tar.gz
stm-095fb3064b93aed5decf2d1a8ae03745a265e418.tar.xz
golint
-rw-r--r--stm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm.go b/stm.go
index e0c60a4..11692f4 100644
--- a/stm.go
+++ b/stm.go
@@ -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