We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e397572 commit 9193d3cCopy full SHA for 9193d3c
src/main/scala/com/github/bigwheel/thpy/ImprovedILoop.scala
@@ -65,7 +65,7 @@ class ImprovedILoop
65
|
66
|${contextMessage.mkString("\n")}
67
68
- |binded names: ${showBind()}
+ |bound names: ${showBind()}
69
|Type in expressions for evaluation. Or try :help.""".stripMargin
70
}
71
@@ -80,7 +80,7 @@ class ImprovedILoop
80
private[this] def showBindCommand(): Result = showBind
81
82
override def commands: List[LoopCommand] =
83
- LoopCommand.nullary("showbind", "show binded names", () => showBindCommand) :: super.commands
+ LoopCommand.nullary("showbind", "show bound names", () => showBindCommand) :: super.commands
84
85
def process(): Boolean = process(this.settings)
86
0 commit comments