diff options
author | danvolchek <danvnad@gmail.com> | 2019-09-14 12:44:03 -0700 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-18 01:23:54 -0400 |
commit | e6edf8adc7bfe470c005af4a1f51217c0f355831 (patch) | |
tree | 78e0409593db829eaaa2fb4853d855ca42d5f112 /src | |
parent | 4e7a67bc6d616950fed03ba8c26f9dec2cc273ff (diff) | |
download | SMAPI-e6edf8adc7bfe470c005af4a1f51217c0f355831.tar.gz SMAPI-e6edf8adc7bfe470c005af4a1f51217c0f355831.tar.bz2 SMAPI-e6edf8adc7bfe470c005af4a1f51217c0f355831.zip |
fix saving event doc typo
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI/Events/IGameLoopEvents.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Events/IGameLoopEvents.cs b/src/SMAPI/Events/IGameLoopEvents.cs index a576895b..6855737b 100644 --- a/src/SMAPI/Events/IGameLoopEvents.cs +++ b/src/SMAPI/Events/IGameLoopEvents.cs @@ -26,7 +26,7 @@ namespace StardewModdingAPI.Events /// <summary>Raised after the game finishes creating the save file.</summary> event EventHandler<SaveCreatedEventArgs> SaveCreated; - /// <summary>Raised before the game begins writes data to the save file (except the initial save creation).</summary> + /// <summary>Raised before the game begins writing data to the save file (except the initial save creation).</summary> event EventHandler<SavingEventArgs> Saving; /// <summary>Raised after the game finishes writing data to the save file (except the initial save creation).</summary> |