From 5b904ddbd7cd91974d5332eb1867136d7445061b Mon Sep 17 00:00:00 2001 From: skim Date: Tue, 13 Oct 2020 01:24:54 -0700 Subject: [PATCH] Update links to main branch --- ruma-api-macros/README.md | 2 +- ruma-api-macros/src/lib.rs | 2 +- ruma-api/CHANGELOG.md | 2 +- ruma-events-macros/README.md | 2 +- ruma-events-macros/src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ruma-api-macros/README.md b/ruma-api-macros/README.md index 2c6d63a7..fd4c2810 100644 --- a/ruma-api-macros/README.md +++ b/ruma-api-macros/README.md @@ -3,7 +3,7 @@ **ruma-api-macros** provides a procedural macro for easily generating [ruma-api]-compatible API endpoints. You define the endpoint's metadata, request fields, and response fields, and the macro generates all the necessary types and implements all the necessary traits. -[ruma-api]: https://github.com/ruma/ruma/tree/master/ruma-api +[ruma-api]: https://github.com/ruma/ruma/tree/main/ruma-api ## Usage diff --git a/ruma-api-macros/src/lib.rs b/ruma-api-macros/src/lib.rs index cc324af5..ff0886b8 100644 --- a/ruma-api-macros/src/lib.rs +++ b/ruma-api-macros/src/lib.rs @@ -5,7 +5,7 @@ //! re-exports in ruma-api. Also note that for technical reasons, the //! `ruma_api!` macro is only documented in ruma-api, not here. //! -//! [ruma-api]: https://github.com/ruma/ruma/tree/master/ruma-api +//! [ruma-api]: https://github.com/ruma/ruma/tree/main/ruma-api #![allow(clippy::cognitive_complexity)] // Remove this once https://github.com/rust-lang/rust/issues/54883 becomes stable diff --git a/ruma-api/CHANGELOG.md b/ruma-api/CHANGELOG.md index a4178a4d..d64aa4bb 100644 --- a/ruma-api/CHANGELOG.md +++ b/ruma-api/CHANGELOG.md @@ -183,7 +183,7 @@ Breaking changes: The crate has been redesign to focus on conversions between an endpoint's request and response types and Hyper request and response types. Implementations are expected to be generated via [ruma-api-macros]. -[ruma-api-macros]: https://github.com/ruma/ruma/tree/master/ruma-api-macros +[ruma-api-macros]: https://github.com/ruma/ruma/tree/main/ruma-api-macros # 0.3.0 diff --git a/ruma-events-macros/README.md b/ruma-events-macros/README.md index c45254a1..e0719891 100644 --- a/ruma-events-macros/README.md +++ b/ruma-events-macros/README.md @@ -2,4 +2,4 @@ **ruma-events-macros** provides a procedural macro for easily generating event types for [ruma-events]. -[ruma-events]: https://github.com/ruma/ruma/tree/master/ruma-events +[ruma-events]: https://github.com/ruma/ruma/tree/main/ruma-events diff --git a/ruma-events-macros/src/lib.rs b/ruma-events-macros/src/lib.rs index 68a09ecb..644de29e 100644 --- a/ruma-events-macros/src/lib.rs +++ b/ruma-events-macros/src/lib.rs @@ -3,7 +3,7 @@ //! //! See the documentation for the individual macros for usage details. //! -//! [ruma-events]: https://github.com/ruma/ruma/tree/master/ruma-events +//! [ruma-events]: https://github.com/ruma/ruma/tree/main/ruma-events #![deny(missing_copy_implementations, missing_debug_implementations, missing_docs)]