summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTim Oram <mitmaro@gmail.com>2017-01-23 10:18:45 -0330
committerTim Oram <mitmaro@gmail.com>2017-01-23 10:18:45 -0330
commit2e0749c9ac537415acf628bb841438b10c2745f9 (patch)
tree54f9fd90414a3a8b96fd0ca6a6fbc699c8d7363d /src
parentb7c840533ce0cb6363992ba25fe991a333140299 (diff)
Fixed error in key binding messaging
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index eb97568..af0a040 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -296,8 +296,8 @@ impl Window {
self.draw_help_command("w", "Write interactive rebase file");
self.draw_help_command("W", "Immediately write interactive rebase file");
self.draw_help_command("?", "Show help");
- self.draw_help_command("j", "Move selected commit up");
- self.draw_help_command("k", "Move selected commit down");
+ self.draw_help_command("j", "Move selected commit down");
+ self.draw_help_command("k", "Move selected commit up");
self.draw_help_command("p", "Set selected commit to be picked");
self.draw_help_command("r", "Set selected commit to be reworded");
self.draw_help_command("e", "Set selected commit to be edited");