diff --git a/hierarchical-spectral-clustering.cabal b/hierarchical-spectral-clustering.cabal
--- a/hierarchical-spectral-clustering.cabal
+++ b/hierarchical-spectral-clustering.cabal
@@ -1,6 +1,6 @@
 cabal-version: >=1.10
 name: hierarchical-spectral-clustering
-version: 0.5.0.0
+version: 0.5.0.1
 license: GPL-3
 license-file: LICENSE
 copyright: 2019 Gregory W. Schwartz
diff --git a/src/Math/Clustering/Hierarchical/Spectral/Types.hs b/src/Math/Clustering/Hierarchical/Spectral/Types.hs
--- a/src/Math/Clustering/Hierarchical/Spectral/Types.hs
+++ b/src/Math/Clustering/Hierarchical/Spectral/Types.hs
@@ -56,7 +56,7 @@
 data GenericClusteringVertex a = GenericClusteringVertex
     { _item :: !(Maybe (Items a))
     , _distance :: !(Maybe Double)
-    , _pValue :: !(Maybe Double)
+    , _significance :: !(Maybe Double)
     } deriving (Eq, Ord, Read, Show, Generic)
 
 -- | Convert a ClusteringTree to a Dendrogram. Modularity is the distance.
@@ -99,7 +99,7 @@
       Node { rootLabel = ( GenericClusteringVertex
                              { _item = Just $ _clusteringItems n
                              , _distance = Nothing
-                             , _pValue = Nothing
+                             , _significance = Nothing
                              }
                          )
            , subForest = []
@@ -108,7 +108,7 @@
       Node { rootLabel = ( GenericClusteringVertex
                             { _item = Nothing
                             , _distance = Just . unQ . _ngMod $ n
-                            , _pValue = _pVal n
+                            , _significance = _pVal n
                             }
                          )
            , subForest = fmap go xs
