We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad912f commit 55b043eCopy full SHA for 55b043e
2 files changed
Makefile
@@ -31,6 +31,6 @@ format-check:
31
32
lint:
33
@rustup component add clippy 2> /dev/null
34
- @cargo clippy
+ @cargo clippy --examples --tests
35
36
.PHONY: all doc build check test format format-check lint check-minver
examples/colors256.rs
@@ -4,14 +4,14 @@ fn main() {
4
for i in 0..=255 {
5
print!("{:03} ", style(i).color256(i));
6
if i % 16 == 15 {
7
- println!("");
+ println!();
8
}
9
10
11
12
print!("{:03} ", style(i).black().on_color256(i));
13
14
15
16
17
0 commit comments