diff --git a/morpheus-graphql-core.cabal b/morpheus-graphql-core.cabal
--- a/morpheus-graphql-core.cabal
+++ b/morpheus-graphql-core.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           morpheus-graphql-core
-version:        0.27.0
+version:        0.27.1
 synopsis:       Morpheus GraphQL Core
 description:    Build GraphQL APIs with your favorite functional language!
 category:       web, graphql
@@ -249,7 +249,7 @@
     , relude >=0.3.0 && <2.0.0
     , scientific >=0.3.6.2 && <0.4.0
     , template-haskell >=2.0.0 && <3.0.0
-    , text >=1.2.3 && <1.3.0
+    , text >=1.2.3 && <2.1.0
     , th-lift-instances >=0.1.1 && <0.3.0
     , transformers >=0.3.0 && <0.6.0
     , unordered-containers >=0.2.8 && <0.3.0
@@ -280,7 +280,7 @@
     , tasty >=0.1.0 && <1.5.0
     , tasty-hunit >=0.1.0 && <1.0.0
     , template-haskell >=2.0.0 && <3.0.0
-    , text >=1.2.3 && <1.3.0
+    , text >=1.2.3 && <2.1.0
     , th-lift-instances >=0.1.1 && <0.3.0
     , transformers >=0.3.0 && <0.6.0
     , unordered-containers >=0.2.8 && <0.3.0
diff --git a/src/Data/Morpheus/Types/Internal/AST/Error.hs b/src/Data/Morpheus/Types/Internal/AST/Error.hs
--- a/src/Data/Morpheus/Types/Internal/AST/Error.hs
+++ b/src/Data/Morpheus/Types/Internal/AST/Error.hs
@@ -186,6 +186,9 @@
 instance Msg String where
   msg = msg . T.pack
 
+instance Msg Int where
+  msg = msg . T.pack . show
+
 instance Msg Text where
   msg message =
     GQLError
diff --git a/src/Data/Morpheus/Types/Internal/AST/Type.hs b/src/Data/Morpheus/Types/Internal/AST/Type.hs
--- a/src/Data/Morpheus/Types/Internal/AST/Type.hs
+++ b/src/Data/Morpheus/Types/Internal/AST/Type.hs
@@ -70,9 +70,9 @@
 
 --  Definitions:
 --     Strictness:
---        Strict: Value (Strict) Types.
+--        strict: value (Strict) Types.
 --             members: {scalar, enum , input}
---        Lazy: Resolver (lazy) Types
+--        lazy: resolver (lazy) Types
 --             members: strict + {object, interface, union}
 class Strictness t where
   isResolverType :: t -> Bool
