diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-06-16 18:53:29 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-06-16 18:53:29 -0400 |
commit | f63f14c70369541311bb5034894409a5170d56e9 (patch) | |
tree | 009af9ef101834062f7c92bd97d8f5b83e1c3bf1 /src/SMAPI/Framework | |
parent | dcd2c647a2abd836e8ee20f8ddad6568c9b4fbf2 (diff) | |
download | SMAPI-f63f14c70369541311bb5034894409a5170d56e9.tar.gz SMAPI-f63f14c70369541311bb5034894409a5170d56e9.tar.bz2 SMAPI-f63f14c70369541311bb5034894409a5170d56e9.zip |
fix typo
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 1a2c97f4..2794002c 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -994,7 +994,7 @@ namespace StardewModdingAPI.Framework } catch (SAssemblyLoadFailedException ex) { - errorReasonPhrase = $"it DLL couldn't be loaded: {ex.Message}"; + errorReasonPhrase = $"its DLL couldn't be loaded: {ex.Message}"; return false; } catch (Exception ex) |