summaryrefslogtreecommitdiffstats
path: root/examples/system_information
diff options
context:
space:
mode:
authorLibravatar Richard Custodio <richardcustodio@pm.me>2024-03-18 18:24:57 -0300
committerLibravatar Richard Custodio <richardcustodio@pm.me>2024-03-18 18:24:57 -0300
commit8ed62541af8cd16760b59d8f0a49d619d78f592e (patch)
tree83736da592bb41b487ef21ff13c10470ac22656c /examples/system_information
parentdb7d8680ce198439921c8856b2d6d0ccfa4d66ff (diff)
downloadiced-8ed62541af8cd16760b59d8f0a49d619d78f592e.tar.gz
iced-8ed62541af8cd16760b59d8f0a49d619d78f592e.tar.bz2
iced-8ed62541af8cd16760b59d8f0a49d619d78f592e.zip
fix: run `cargo fmt`
Diffstat (limited to 'examples/system_information')
-rw-r--r--examples/system_information/src/main.rs12
1 files changed, 4 insertions, 8 deletions
diff --git a/examples/system_information/src/main.rs b/examples/system_information/src/main.rs
index cd4d9cb3..cae764dc 100644
--- a/examples/system_information/src/main.rs
+++ b/examples/system_information/src/main.rs
@@ -108,15 +108,11 @@ impl Example {
let memory_used = text!("Memory (used): {memory_text}");
- let graphics_adapter = text!(
- "Graphics adapter: {}",
- information.graphics_adapter
- );
+ let graphics_adapter =
+ text!("Graphics adapter: {}", information.graphics_adapter);
- let graphics_backend = text!(
- "Graphics backend: {}",
- information.graphics_backend
- );
+ let graphics_backend =
+ text!("Graphics backend: {}", information.graphics_backend);
column![
system_name.size(30),