diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.0.6
+
+* Fix bug in `notZeroElse`.
+
 0.0.5
 
 * Changed `notZero1` to just be the value 1.
diff --git a/notzero.cabal b/notzero.cabal
--- a/notzero.cabal
+++ b/notzero.cabal
@@ -1,5 +1,5 @@
 name:               notzero
-version:            0.0.5
+version:            0.0.6
 license:            BSD3
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ> <dibblego>
diff --git a/src/Data/NotZero.hs b/src/Data/NotZero.hs
--- a/src/Data/NotZero.hs
+++ b/src/Data/NotZero.hs
@@ -39,7 +39,7 @@
   -> a
   -> NotZero a
 notZeroElse d a =
-  NotZero (bool 1 d (a == 0))
+  NotZero (bool a d (a == 0))
   
 notZero1 ::
   (Eq a, Num a) =>
