aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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