summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-05-19 18:46:33 -0400
committerDan Davison <dandavison7@gmail.com>2021-05-19 19:01:03 -0400
commitec3bb68be52f47bc252ce0d6d96d43c35fdcd89a (patch)
treed76b7dac16906173c917b4f11985f437cba47265
parent56a69049cf800e703637dbd1491278c298a0ce76 (diff)
Fix typo
-rw-r--r--src/delta.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/delta.rs b/src/delta.rs
index e695397e..56114f76 100644
--- a/src/delta.rs
+++ b/src/delta.rs
@@ -140,7 +140,7 @@ impl<'a> StateMachine<'a> {
self.handle_additional_file_meta_cases()?
} else if self.state.is_in_hunk() {
// A true hunk line should start with one of: '+', '-', ' '. However, handle_hunk_line
- // handles all lines until the state self transitions away from the hunk states.
+ // handles all lines until the state transitions away from the hunk states.
self.handle_hunk_line()?
} else {
false