diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-08-27 20:34:57 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-08-27 23:04:38 +0200 |
| commit | 0cbbe31c5f16df73dcc3a73b37cac4a72948f3a6 (patch) | |
| tree | f607a68d575ac670b9a637a967eabbe56f9257aa /src/Asset.hs | |
| parent | d8420a37ffe9e752816b071fced4a972ca1fad23 (diff) | |
Accept various builtin types in type expressions
Diffstat (limited to 'src/Asset.hs')
| -rw-r--r-- | src/Asset.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Asset.hs b/src/Asset.hs index 72ffd54..37e332b 100644 --- a/src/Asset.hs +++ b/src/Asset.hs @@ -19,7 +19,7 @@ textAssetPath :: AssetPath -> Text textAssetPath (AssetPath path) = T.pack path instance ExprType Asset where - textExprType _ = "asset" + textExprType _ = "Asset" textExprValue asset = "asset:" <> textAssetPath (assetPath asset) recordMembers = |