diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-15 15:07:52 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-15 15:07:52 -0400 |
commit | 8505f4ae4dc5c7bf64c1ea9ae4ea9fd38c4bd1c4 (patch) | |
tree | c40be5ceb1df45ea58fc0eb1896d151c33a193e2 /src/SMAPI/Framework | |
parent | 048f41244f6b2c7f95ac5bf75be2b16f42b99169 (diff) | |
download | SMAPI-8505f4ae4dc5c7bf64c1ea9ae4ea9fd38c4bd1c4.tar.gz SMAPI-8505f4ae4dc5c7bf64c1ea9ae4ea9fd38c4bd1c4.tar.bz2 SMAPI-8505f4ae4dc5c7bf64c1ea9ae4ea9fd38c4bd1c4.zip |
fix typo
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r-- | src/SMAPI/Framework/ContentManagers/ModContentManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/ContentManagers/ModContentManager.cs b/src/SMAPI/Framework/ContentManagers/ModContentManager.cs index 85e109c8..38a21383 100644 --- a/src/SMAPI/Framework/ContentManagers/ModContentManager.cs +++ b/src/SMAPI/Framework/ContentManagers/ModContentManager.cs @@ -121,7 +121,7 @@ namespace StardewModdingAPI.Framework.ContentManagers } catch (Exception ex) when (ex is not SContentLoadException) { - throw this.GetLoadError(assetName, ContentLoadErrorType.Other, "an unexpected occurred.", ex); + throw this.GetLoadError(assetName, ContentLoadErrorType.Other, "an unexpected error occurred.", ex); } // track & return asset |