From 6c8885e8d83047c1bd286e11c28e203b06fcb912 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 27 Oct 2023 12:17:20 -0500 Subject: [PATCH] docs: Update repo links --- crates/toml_edit/README.md | 9 +++------ crates/toml_edit/src/lib.rs | 4 +--- crates/toml_edit/src/visit.rs | 2 +- crates/toml_edit/src/visit_mut.rs | 2 +- 4 files changed, 6 insertions(+), 11 deletions(-) diff --git a/crates/toml_edit/README.md b/crates/toml_edit/README.md index 12d879af..b6d1275b 100644 --- a/crates/toml_edit/README.md +++ b/crates/toml_edit/README.md @@ -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) @@ -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 @@ -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 diff --git a/crates/toml_edit/src/lib.rs b/crates/toml_edit/src/lib.rs index 80c0ddda..854fb645 100644 --- a/crates/toml_edit/src/lib.rs +++ b/crates/toml_edit/src/lib.rs @@ -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; diff --git a/crates/toml_edit/src/visit.rs b/crates/toml_edit/src/visit.rs index 1bc640a8..2a5a473d 100644 --- a/crates/toml_edit/src/visit.rs +++ b/crates/toml_edit/src/visit.rs @@ -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, diff --git a/crates/toml_edit/src/visit_mut.rs b/crates/toml_edit/src/visit_mut.rs index 2c2af975..35cf3653 100644 --- a/crates/toml_edit/src/visit_mut.rs +++ b/crates/toml_edit/src/visit_mut.rs @@ -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,