Skip to content

Commit fca326b

Browse files
committed
rustfmt and update README
1 parent 3e9cd24 commit fca326b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ It automatically detects open source licenses from texts and provides the user w
2323

2424
<img src="assets/kubernetes.png" align="right" height="240px">
2525

26-
Onefetch can be configured via command-line flags to display exactly what you want, the way you want it to: you can customize ASCII/Text formatting, disable info lines, ignore files & directories, output in JSON format, etc. Read more about it [here](https://github.com/o2sh/onefetch/wiki/command-line-options).
26+
Onefetch can be configured via command-line flags to display exactly what you want, the way you want it to: you can customize ASCII/Text formatting, disable info lines, ignore files & directories, output in multiple formats (Json, Yaml), etc. Read more about it [here](https://github.com/o2sh/onefetch/wiki/command-line-options).
2727

2828
As of now, onefetch supports more than 50 different programming languages; if your language of choice isn't supported: Open up an issue and support will be added.
2929

Diff for: src/onefetch/cli.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ impl Cli {
257257
let print_package_managers = matches.is_present("package-managers");
258258
let iso_time = matches.is_present("isotime");
259259

260-
let output = matches.value_of("output").map(SerializationFormat::from_str).transpose().unwrap();
260+
let output =
261+
matches.value_of("output").map(SerializationFormat::from_str).transpose().unwrap();
261262

262263
let fields_to_hide: Vec<String> = if let Some(values) = matches.values_of("disable-fields")
263264
{

0 commit comments

Comments
 (0)