Skip to content

Commit 38bc970

Browse files
committed
typo
1 parent b4c3620 commit 38bc970

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/MaaFramework.Binding.Native/MaaController/MaaGamepadController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class MaaGamepadController : MaaController
3737
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
3838
private string DebuggerInfoString => _debugInfo is null
3939
? "No Screencap"
40-
: $"{nameof(_debugInfo.Name)} = {_debugInfo.Name}, {nameof(_debugInfo.ClassName)} = {_debugInfo.ClassName}, ScreencapMethod = {_debugInfo.ScreencapMethods}";
40+
: $"{nameof(_debugInfo.Name)} = {_debugInfo.Name}, {nameof(_debugInfo.ClassName)} = {_debugInfo.ClassName}, ScreencapMethods = {_debugInfo.ScreencapMethods}";
4141

4242
/// <summary>
4343
/// Creates a <see cref="MaaGamepadController"/> instance.

src/MaaFramework.Binding.Native/MaaController/MaaWin32Controller.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class MaaWin32Controller : MaaController
1616
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
1717
private string DebuggerDisplay => IsInvalid
1818
? $"Invalid {GetType().Name}"
19-
: $"{GetType().Name} {{ {nameof(_debugInfo.Name)} = {_debugInfo.Name}, {nameof(_debugInfo.ClassName)} = {_debugInfo.ClassName}, ScreencapMethod = {_debugInfo.ScreencapMethods}, MouseMethod = {_debugInfo.MouseMethod}, KeyboardMethod = {_debugInfo.KeyboardMethod} }}";
19+
: $"{GetType().Name} {{ {nameof(_debugInfo.Name)} = {_debugInfo.Name}, {nameof(_debugInfo.ClassName)} = {_debugInfo.ClassName}, ScreencapMethods = {_debugInfo.ScreencapMethods}, MouseMethod = {_debugInfo.MouseMethod}, KeyboardMethod = {_debugInfo.KeyboardMethod} }}";
2020

2121
/// <summary>
2222
/// Creates a <see cref="MaaWin32Controller"/> instance.

0 commit comments

Comments
 (0)