Skip to content

Commit 4d8bfe0

Browse files
authored
Fix links in tutorial files (#6393)
1 parent ca0313b commit 4d8bfe0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tutorials/README.md

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tutorials/cargo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ icu = { version = "2.0.0-dev", features = ["serde"] }
5050
icu_provider_blob = {version = "2.0.0-dev", features = ["alloc"] }
5151
```
5252

53-
To learn about building ICU4X data, including whether to check in the data blob file to your repository, see [data_management.md](./data_management.md).
53+
To learn about building ICU4X data, including whether to check in the data blob file to your repository, see [data-management.md](./data-management.md).
5454

5555
[« Fully Working Example »](./crates/buffer)
5656

tutorials/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The way `ICU4X` handles data is one of its novelties, aimed at making the data m
153153

154154
`ICU4X` by default contains data for a a wide range of CLDR locales[^1], meaning that for most languages, the constructors can be considered infallible and you can `expect` or `unwrap` them, as we did above.
155155

156-
However, shipping the library with all locales will have a size impact on your binary. It also requires you to update your binary whenever CLDR data changes, which happens twice a year. To learn how to solve these problems, see our [data management](data_management.md) tutorial.
156+
However, shipping the library with all locales will have a size impact on your binary. It also requires you to update your binary whenever CLDR data changes, which happens twice a year. To learn how to solve these problems, see our [data management](data-management.md) tutorial.
157157

158158
[^1]: All locales with coverage level `basic`, `moderate`, or `modern` in [`CLDR`](https://github.com/unicode-org/cldr-json/blob/main/cldr-json/cldr-core/coverageLevels.json)
159159

@@ -163,7 +163,7 @@ This concludes this introduction tutorial. With the help of `DateTimeFormat`, `L
163163

164164
Internationalization is a broad domain and there are many more components in `ICU4X`.
165165

166-
Next, learn how to [generate optimized data for your binary](data_management.md), [configure your Cargo.toml file](cargo.md), or continue exploring by reading [the docs](https://docs.rs/icu/latest/).
166+
Next, learn how to [generate optimized data for your binary](data-management.md), [configure your Cargo.toml file](cargo.md), or continue exploring by reading [the docs](https://docs.rs/icu/latest/).
167167

168168

169169

0 commit comments

Comments
 (0)