diff options
author | Ryan Russell | 2022-06-01 17:01:37 +0000 |
---|---|---|
committer | GitHub | 2022-06-01 17:01:37 +0000 |
commit | ae12c58f0ff924e9cc512f0368e5fca858566cdd (patch) | |
tree | 62bde8852872881444465558b3fc576335c8e420 /helix-core/src/increment | |
parent | fc666db6b99a8baab0acf3791f9965e7cb2be9e1 (diff) |
Improve Readability (#2639)
Diffstat (limited to 'helix-core/src/increment')
-rw-r--r-- | helix-core/src/increment/number.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/increment/number.rs b/helix-core/src/increment/number.rs index 57171f67..62b4a19d 100644 --- a/helix-core/src/increment/number.rs +++ b/helix-core/src/increment/number.rs @@ -377,7 +377,7 @@ mod test { } #[test] - fn test_increment_basic_hexadedimal_numbers() { + fn test_increment_basic_hexadecimal_numbers() { let tests = [ ("0x0100", 1, "0x0101"), ("0x0100", -1, "0x00ff"), |