diff --git a/CONTRIBUTORS b/CONTRIBUTORS
new file mode 100644
--- /dev/null
+++ b/CONTRIBUTORS
@@ -0,0 +1,6 @@
+All of the following have contributed code to the project.  Thanks for
+your help!
+
+John Dorsey -- initial version
+Luke Palmer -- corrected instance Traversable
+
diff --git a/Data/Tuple/OneTuple.hs b/Data/Tuple/OneTuple.hs
--- a/Data/Tuple/OneTuple.hs
+++ b/Data/Tuple/OneTuple.hs
@@ -53,7 +53,8 @@
     foldr1 _f (OneTuple x) = x
     foldl1 _f (OneTuple x) = x
 
-instance Traversable OneTuple
+instance Traversable OneTuple where
+    sequenceA (OneTuple x) = fmap OneTuple x
 
 instance Functor OneTuple where
     fmap f (OneTuple x) = OneTuple (f x)
diff --git a/FAQ b/FAQ
--- a/FAQ
+++ b/FAQ
@@ -20,8 +20,3 @@
       component type!
 A 4.  Yes, that's true, up to laziness.
 
-Q 5.  What's NST?
-A 5.  "Need Singleton Tuple".  It's the class of problems that can't
-      be solved without using a singleton tuple.  Also conveniently
-      stands for "No Such Thing".
-
diff --git a/OneTuple.cabal b/OneTuple.cabal
--- a/OneTuple.cabal
+++ b/OneTuple.cabal
@@ -1,7 +1,7 @@
 Name:            OneTuple
-Version:         0.1.0
-Synopsis:        OneTuple, the Singleton Tuple
-Description:     OneTuple, the Singleton Tuple
+Version:         0.1.1
+Synopsis:        Singleton Tuple
+Description:     Singleton Tuple
 Copyright:       (c) John Dorsey 2008
 License:	 BSD3
 License-file:    LICENSE
