Skip to content

Commit

Permalink
docs.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian committed Feb 17, 2023
1 parent a6d9b1f commit d525018
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 45 deletions.
36 changes: 0 additions & 36 deletions provider/datagen/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 1 addition & 8 deletions provider/datagen/src/bin/datagen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,7 @@ fn main() -> eyre::Result<()> {
let matches = App::new("icu4x-datagen")
.version(crate_version!())
.author(crate_authors!())
.about(concat!(
"Learn more at: https://github.com/unicode-org/icu4x/blob/icu%40",
std::env!("CARGO_PKG_VERSION_MAJOR"),
".",
std::env!("CARGO_PKG_VERSION_MINOR"),
".0", // we don't tag patch releases
"/docs/tutorials/data_management.md"
))
.about(concat!("Learn more at: https://docs.rs/icu_datagen/", crate_version!()))
.arg(
Arg::with_name("VERBOSE")
.short("v")
Expand Down
4 changes: 3 additions & 1 deletion provider/datagen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
//!
//! Data files can be generated either programmatically (i.e. in `build.rs`), or through a
//! command-line utility.
//!
//!
#![doc = concat!("Also see our [datagen tutorial](https://github.com/unicode-org/icu4x/blob/icu%40", std::env!("CARGO_PKG_VERSION_MAJOR"), ".", std::env!("CARGO_PKG_VERSION_MINOR"), ".0/docs/tutorials/data_management.md)")]
//!
//! # Examples
//!
Expand Down Expand Up @@ -44,7 +47,6 @@
//! > --format blob \
//! > --out data.postcard
//! ```
//! More details can be found by running `--help`.
#![cfg_attr(
Expand Down

0 comments on commit d525018

Please sign in to comment.