Skip to content

Commit 9193d3c

Browse files
authored
Fix spell miss
1 parent e397572 commit 9193d3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/com/github/bigwheel/thpy/ImprovedILoop.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class ImprovedILoop
6565
|
6666
|${contextMessage.mkString("\n")}
6767
|
68-
|binded names: ${showBind()}
68+
|bound names: ${showBind()}
6969
|Type in expressions for evaluation. Or try :help.""".stripMargin
7070
}
7171

@@ -80,7 +80,7 @@ class ImprovedILoop
8080
private[this] def showBindCommand(): Result = showBind
8181

8282
override def commands: List[LoopCommand] =
83-
LoopCommand.nullary("showbind", "show binded names", () => showBindCommand) :: super.commands
83+
LoopCommand.nullary("showbind", "show bound names", () => showBindCommand) :: super.commands
8484

8585
def process(): Boolean = process(this.settings)
8686
}

0 commit comments

Comments
 (0)