Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ca83050

Browse files
Switch branch name to main
Update all references.
1 parent 97a2fbe commit ca83050

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- master
7+
- main
88
- staging
99
- trying
1010

‎CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ assert_eq!(right, [2, 4]);
419419

420420
## Changed
421421

422-
- Enabled CI on master branch.
422+
- Enabled CI.
423423
- `Future::join` and `Future::try_join` can now join futures with different
424424
output types.
425425

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ fn main() {
9494
More examples, including networking and file access, can be found in our
9595
[`examples`] directory and in our [documentation].
9696

97-
[`examples`]: https://github.com/async-rs/async-std/tree/master/examples
97+
[`examples`]: https://github.com/async-rs/async-std/tree/HEAD/examples
9898
[documentation]: https://docs.rs/async-std#examples
9999
[`task::block_on`]: https://docs.rs/async-std/*/async_std/task/fn.block_on.html
100100
[`"attributes"` feature]: https://docs.rs/async-std/#features

‎ci/install-mdbook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
set -euxo pipefail
22

33
# Based on the Rust-Embedded WG's book CI
4-
# https://github.com/rust-embedded/book/blob/master/ci/install.sh
4+
# https://github.com/rust-embedded/book/blob/HEAD/ci/install.sh
55

66
main() {
77
# Note - this will only accept releases tagged with v0.3.x

‎docs/src/tutorial/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ How will it distribute the messages?
1111

1212
This tutorial explains how to write a chat server in `async-std`.
1313

14-
You can also find the tutorial in [our repository](https://github.com/async-rs/async-std/blob/master/examples/a-chat).
14+
You can also find the tutorial in [our repository](https://github.com/async-rs/async-std/blob/HEAD/examples/a-chat).

‎examples/README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -154,18 +154,18 @@ Make requests by running the client example:
154154
cargo run --example udp-client
155155
```
156156

157-
[hello-world]: https://github.com/async-rs/async-std/blob/master/examples/hello-world.rs
158-
[line-count]: https://github.com/async-rs/async-std/blob/master/examples/line-count.rs
159-
[list-dir]: https://github.com/async-rs/async-std/blob/master/examples/list-dir.rs
160-
[logging]: https://github.com/async-rs/async-std/blob/master/examples/logging.rs
161-
[print-file]: https://github.com/async-rs/async-std/blob/master/examples/print-file.rs
162-
[socket-timeouts]: https://github.com/async-rs/async-std/blob/master/examples/socket-timeouts.rs
163-
[stdin-echo]: https://github.com/async-rs/async-std/blob/master/examples/stdin-echo.rs
164-
[stdin-timeout]: https://github.com/async-rs/async-std/blob/master/examples/stdin-timeout.rs
165-
[surf-web]: https://github.com/async-rs/async-std/blob/master/examples/surf-web.rs
166-
[task-local]: https://github.com/async-rs/async-std/blob/master/examples/task-local.rs
167-
[task-name]: https://github.com/async-rs/async-std/blob/master/examples/task-name.rs
168-
[tcp-client]: https://github.com/async-rs/async-std/blob/master/examples/tcp-client.rs
169-
[tcp-echo]: https://github.com/async-rs/async-std/blob/master/examples/tcp-echo.rs
170-
[udp-client]: https://github.com/async-rs/async-std/blob/master/examples/udp-client.rs
171-
[udp-echo]: https://github.com/async-rs/async-std/blob/master/examples/udp-echo.rs
157+
[hello-world]: https://github.com/async-rs/async-std/blob/HEAD/examples/hello-world.rs
158+
[line-count]: https://github.com/async-rs/async-std/blob/HEAD/examples/line-count.rs
159+
[list-dir]: https://github.com/async-rs/async-std/blob/HEAD/examples/list-dir.rs
160+
[logging]: https://github.com/async-rs/async-std/blob/HEAD/examples/logging.rs
161+
[print-file]: https://github.com/async-rs/async-std/blob/HEAD/examples/print-file.rs
162+
[socket-timeouts]: https://github.com/async-rs/async-std/blob/HEAD/examples/socket-timeouts.rs
163+
[stdin-echo]: https://github.com/async-rs/async-std/blob/HEAD/examples/stdin-echo.rs
164+
[stdin-timeout]: https://github.com/async-rs/async-std/blob/HEAD/examples/stdin-timeout.rs
165+
[surf-web]: https://github.com/async-rs/async-std/blob/HEAD/examples/surf-web.rs
166+
[task-local]: https://github.com/async-rs/async-std/blob/HEAD/examples/task-local.rs
167+
[task-name]: https://github.com/async-rs/async-std/blob/HEAD/examples/task-name.rs
168+
[tcp-client]: https://github.com/async-rs/async-std/blob/HEAD/examples/tcp-client.rs
169+
[tcp-echo]: https://github.com/async-rs/async-std/blob/HEAD/examples/tcp-echo.rs
170+
[udp-client]: https://github.com/async-rs/async-std/blob/HEAD/examples/udp-client.rs
171+
[udp-echo]: https://github.com/async-rs/async-std/blob/HEAD/examples/udp-echo.rs

‎src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
//! * [The async-std website](https://async.rs/)
5757
//! * [The async-std book](https://book.async.rs)
5858
//! * [GitHub repository](https://github.com/async-rs/async-std)
59-
//! * [List of code examples](https://github.com/async-rs/async-std/tree/master/examples)
59+
//! * [List of code examples](https://github.com/async-rs/async-std/tree/HEAD/examples)
6060
//! * [Discord chat](https://discord.gg/JvZeVNe)
6161
//!
6262
//! # What is in the `async-std` documentation?

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /