aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvim88 <vim88vim88@gmail.com>2018-12-02 20:00:42 +0800
committerMartin Holst Swende <martin@swende.se>2018-12-02 20:00:42 +0800
commitefe5886877d3f171fae5adfd1e5f1c585e16946b (patch)
treea176f0c3e36e8b3c0fa4f5ff793267fd3c88182e
parent085f89172f0af9d9685d228ad163d639041f1217 (diff)
downloadgo-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.gz
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.bz2
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.lz
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.xz
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.tar.zst
go-tangerine-efe5886877d3f171fae5adfd1e5f1c585e16946b.zip
signer/core: Fixes typo of method name in comment. (#18222)
-rw-r--r--signer/core/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/signer/core/api.go b/signer/core/api.go
index 2b96cdb5f..e9a335785 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)
}