From efe5886877d3f171fae5adfd1e5f1c585e16946b Mon Sep 17 00:00:00 2001 From: vim88 Date: Sun, 2 Dec 2018 14:00:42 +0200 Subject: [PATCH] signer/core: Fixes typo of method name in comment. (#18222) --- signer/core/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/core/api.go b/signer/core/api.go index 2b96cdb5f3..e9a3357855 100644 --- a/signer/core/api.go +++ b/signer/core/api.go @@ -82,7 +82,7 @@ type SignerUI interface { // OnSignerStartup is invoked when the signer boots, and tells the UI info about external API location and version // information OnSignerStartup(info StartupInfo) - // OnInputRequried is invoked when clef requires user input, for example master password or + // OnInputRequired is invoked when clef requires user input, for example master password or // pin-code for unlocking hardware wallets OnInputRequired(info UserInputRequest) (UserInputResponse, error) }