You've already forked uutils-term-grid
mirror of
https://github.com/uutils/uutils-term-grid.git
synced 2026-06-10 16:13:01 -07:00
Fix clippy unreadable literal warnings
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ fn main() {
|
||||
let mut cells = Vec::new();
|
||||
for _ in 0..10000 {
|
||||
cells.push(n.to_string());
|
||||
n = n.overflowing_pow(2).0 % 100000000;
|
||||
n = n.overflowing_pow(2).0 % 100_000_000;
|
||||
}
|
||||
|
||||
let grid = Grid::new(
|
||||
|
||||
+1
-1
@@ -224,7 +224,7 @@ fn exact_fit() {
|
||||
// This is a reproduction of https://github.com/eza-community/eza/issues/845
|
||||
#[test]
|
||||
fn eza_many_folders() {
|
||||
let cells: Vec<_> = (100000i32..=100401).map(|i| i.to_string()).collect();
|
||||
let cells: Vec<_> = (100_000_i32..=100_401).map(|i| i.to_string()).collect();
|
||||
|
||||
let grid = Grid::new(
|
||||
cells,
|
||||
|
||||
Reference in New Issue
Block a user