diff options
Diffstat (limited to 'src/Asset.hs')
| -rw-r--r-- | src/Asset.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Asset.hs b/src/Asset.hs index 37e332b..2b14dcf 100644 --- a/src/Asset.hs +++ b/src/Asset.hs @@ -1,6 +1,6 @@ module Asset ( Asset(..), - AssetPath(..), + AssetPath(..), textAssetPath, ) where import Data.Text (Text) @@ -27,7 +27,7 @@ instance ExprType Asset where ] instance ExprType AssetPath where - textExprType _ = "filepath" + textExprType _ = "Filepath" textExprValue = ("filepath:" <>) . textAssetPath exprExpansionConvTo = cast textAssetPath |