Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurochi51 committed Mar 17, 2024
1 parent ff50582 commit 8ae514f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PetScale/PetScale.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ private void InitSheet()
}
foreach (var entry in petSizeMap)
{
log.Debug("{pet} with scales {small} - {meduim} - {large}", entry.Key, entry.Value.smallScale, entry.Value.mediumScale, entry.Value.largeScale);
log.Debug("{pet} with scales {small} - {medium} - {large}", entry.Key, entry.Value.smallScale, entry.Value.mediumScale, entry.Value.largeScale);
}
foreach (var entry in ConfigWindow.petMap)
{
log.Debug("{pet} with {model}", entry.Key, entry.Value);
}
}

private unsafe void OnFrameworkUpdate(IFramework framework)
private void OnFrameworkUpdate(IFramework framework)
{
#if DEBUG
DevWindowThings();
Expand Down

0 comments on commit 8ae514f

Please sign in to comment.