Skip to content

Commit

Permalink
fixed incorrect name, thanks @davidmasp!
Browse files Browse the repository at this point in the history
  • Loading branch information
vsbuffalo committed Sep 8, 2023
1 parent 64985ed commit 04c82e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scidataflow"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
exclude = ["logo.png", "tests/test_data/**"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Project data status:

```

If these changes are good, we can tell the Data Manifest it should update it's
If these changes are good, we can tell the Data Manifest it should update its
record of this version:

```console
Expand Down Expand Up @@ -378,7 +378,7 @@ detects if you have Rust on your system, and if not installs it. Then it will
install SciDataFlow via Rust's incredible `cargo` system. To run the easy
install script:

$ https://raw.githubusercontent.com/vsbuffalo/scidataflow/main/easy_install.sh | sh
$ https://raw.githubusercontent.com/vsbuffalo/scidataflow/main/easy_install.sh | bash

If you are security-conscious, you can check the MD5 of SHA1 digests as below:

Expand Down
2 changes: 1 addition & 1 deletion src/lib/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl Project {
let config_path = config_path()?;
let mut file = File::open(&config_path)
.map_err(|_| anyhow!("No SciDataFlow config found at \
{:?}. Please set with scf config --user <NAME> \
{:?}. Please set with sdf config --user <NAME> \
[--email <EMAIL> --affil <AFFILIATION>]", &config_path))?;
let mut contents = String::new();
file.read_to_string(&mut contents)?;
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub mod logging_setup;

const INFO: &str = "\
SciDataFlow: Manage and Share Scientific Data
usage: scf [--help] <subcommand>
usage: sdf [--help] <subcommand>
Some examples:
Expand Down

0 comments on commit 04c82e7

Please sign in to comment.