diff --git a/README.md b/README.md index 950e908..7630973 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ :bulb: Atomic boolean library for Golang, optimized for performance yet simple to use. +Use this for cleaner code. + ## Usage ```go diff --git a/bool.go b/bool.go index 061f346..c08570d 100644 --- a/bool.go +++ b/bool.go @@ -1,3 +1,5 @@ +// Package abool provides an atomic boolean type for cleaner code and +// better performance. package abool import "sync/atomic"