fix: Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Jonathan Arndt 2026-07-13 16:09:45 -07:00 committed by GitHub
parent d4284bd59f
commit 4dca16e9bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,9 +6,9 @@ namespace PepperDash.Essentials.Core
public interface IHasDspPresetSave : IDspPresets public interface IHasDspPresetSave : IDspPresets
{ {
/// <summary> /// <summary>
/// Saves the DSP preset by key /// Saves the preset by key
/// </summary> /// </summary>
/// <param name="presetKey"></param> /// <param name="key">key of preset to save</param>
void SavePresetByKey(string presetKey); // mirrors RecallPreset(string key) void SavePreset(string key);
} }
} }