diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.0.5
+
+* Changed `notZero1` to just be the value 1.
+
 0.0.4
 
 * Add `NotZero` functions to construct with default.
diff --git a/notzero.cabal b/notzero.cabal
--- a/notzero.cabal
+++ b/notzero.cabal
@@ -1,5 +1,5 @@
 name:               notzero
-version:            0.0.4
+version:            0.0.5
 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
@@ -43,10 +43,9 @@
   
 notZero1 ::
   (Eq a, Num a) =>
-  a
-  -> NotZero a
+  NotZero a
 notZero1 =
-  notZeroElse 1
+  NotZero 1
 
 instance Num a => Semigroup (NotZero a) where
   NotZero a <> NotZero b = 
