Skip to content

Commit

Permalink
docs: Update repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 27, 2023
1 parent d5676a8 commit 6c8885e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
9 changes: 3 additions & 6 deletions crates/toml_edit/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# toml_edit

[![Build Status](https://github.com/ordian/toml_edit/workflows/Continuous%20integration/badge.svg)](https://github.com/ordian/toml_edit/actions)
[![codecov](https://codecov.io/gh/ordian/toml_edit/branch/master/graph/badge.svg)](https://codecov.io/gh/ordian/toml_edit)
[![Build Status](https://github.com/toml-rs/toml/workflows/Continuous%20integration/badge.svg)](https://github.com/toml-rs/toml/actions)
[![codecov](https://codecov.io/gh/toml-rs/toml/branch/master/graph/badge.svg)](https://codecov.io/gh/toml-rs/toml)
[![crates.io](https://img.shields.io/crates/v/toml_edit.svg)](https://crates.io/crates/toml_edit)
[![docs](https://docs.rs/toml_edit/badge.svg)](https://docs.rs/toml_edit)
[![Join the chat at https://gitter.im/toml_edit/Lobby](https://badges.gitter.im/a.svg)](https://gitter.im/toml_edit/Lobby)
Expand Down Expand Up @@ -42,8 +42,7 @@ c = { d = "hello" }

Things it does not preserve:

* Scattered array of tables (tables are reordered by default, see [test]).
* Order of dotted keys, see [issue](https://github.com/ordian/toml_edit/issues/163).
* Order of dotted keys, see [issue](https://github.com/toml-rs/toml/issues/163).

## License

Expand All @@ -55,5 +54,3 @@ Licensed under either of
### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

[test]: https://github.com/ordian/toml_edit/blob/f09bd5d075fdb7d2ef8d9bb3270a34506c276753/tests/test_valid.rs#L84
4 changes: 1 addition & 3 deletions crates/toml_edit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,9 @@
//!
//! Things it does not preserve:
//!
//! * Scattered array of tables (tables are reordered by default, see [test]).
//! * Order of dotted keys, see [issue](https://github.com/ordian/toml_edit/issues/163).
//! * Order of dotted keys, see [issue](https://github.com/toml-rs/toml/issues/163).
//!
//! [`toml`]: https://docs.rs/toml/latest/toml/
//! [test]: https://github.com/ordian/toml_edit/blob/f09bd5d075fdb7d2ef8d9bb3270a34506c276753/tests/test_valid.rs#L84

mod array;
mod array_of_tables;
Expand Down
2 changes: 1 addition & 1 deletion crates/toml_edit/src/visit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
//! ```
//!
//! For a more complex example where the visitor has internal state, see `examples/visit.rs`
//! [on GitHub](https://github.com/ordian/toml_edit/blob/master/examples/visit.rs).
//! [on GitHub](https://github.com/toml-rs/toml/blob/main/crates/toml_edit/examples/visit.rs).

use crate::{
Array, ArrayOfTables, Datetime, Document, Formatted, InlineTable, Item, Table, TableLike, Value,
Expand Down
2 changes: 1 addition & 1 deletion crates/toml_edit/src/visit_mut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
//! ```
//!
//! For a more complex example where the visitor has internal state, see `examples/visit.rs`
//! [on GitHub](https://github.com/ordian/toml_edit/blob/master/examples/visit.rs).
//! [on GitHub](https://github.com/toml-rs/toml/blob/main/crates/toml_edit/examples/visit.rs).

use crate::{
Array, ArrayOfTables, Datetime, Document, Formatted, InlineTable, Item, KeyMut, Table,
Expand Down

0 comments on commit 6c8885e

Please sign in to comment.