diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-07-11 11:49:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-10 22:49:18 -0400 |
commit | d70ba324feadcb0c6238dd3f0e04a53bb8448147 (patch) | |
tree | 1d492ec9192d8624bdac3d4f7e10fcf6db957e22 /cli/diff.rs | |
parent | e5489446d5f557352bf7bb7bba8252d46410a099 (diff) |
refactor: update comment in diff.rs (#15142)
Github -> GitHub
Diffstat (limited to 'cli/diff.rs')
-rw-r--r-- | cli/diff.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/diff.rs b/cli/diff.rs index 9aa0b5a44..048464162 100644 --- a/cli/diff.rs +++ b/cli/diff.rs @@ -6,7 +6,7 @@ use std::fmt::Write as _; /// Print diff of the same file_path, before and after formatting. /// -/// Diff format is loosely based on Github diff formatting. +/// Diff format is loosely based on GitHub diff formatting. pub fn diff(orig_text: &str, edit_text: &str) -> String { if orig_text == edit_text { return String::new(); |