diff --git a/wgpu-info/src/main.rs b/wgpu-info/src/main.rs index 4894e25e38..18112a3364 100644 --- a/wgpu-info/src/main.rs +++ b/wgpu-info/src/main.rs @@ -230,7 +230,7 @@ mod inner { } } - println!("\tTexture Format Features: ┌──────────┬──────────┬──────────Allowed┬Usages───────────┬───────────────────┐ ┌────────────┬────────────────┬──────────────Feature┬Flags──────┬─────────────────────┬────────────────────┬─"); + println!("\tTexture Format Features: ┌──────────┬──────────┬──────────Allowed┬Usages───────────┬───────────────────┐ ┌────────────┬────────────────┬────────────────┬─────────Feature┬Flags────────────────┬────────────────────┬─────────────────┬───────────┐"); for format in TEXTURE_FORMAT_LIST { let features = adapter.get_texture_format_features(format); let format_name = match format { @@ -274,7 +274,7 @@ mod inner { println!(" │"); } - println!("\t └──────────┴──────────┴─────────────────┴─────────────────┴───────────────────┘ └────────────┴────────────────┴────────────────┴────────────────┴─────────────────────┘"); + println!("\t └──────────┴──────────┴─────────────────┴─────────────────┴───────────────────┘ └────────────┴────────────────┴────────────────┴────────────────┴─────────────────────┴────────────────────┴─────────────────┴───────────┘"); } pub fn main() {