Removes unstable feature flag from CI doc commands

Per Stjepan Glavina, this flag is superfluous because #[cfg(any(feature = "unstable", feature = "docs"))]
is used everywhere in the codebase.

Discussion: https://github.com/async-rs/async-std/pull/278#issuecomment-538744737
This commit is contained in:
Michael J Ward 2019-10-06 09:45:29 -05:00
parent cf6277bcdc
commit 0d521cb77c
2 changed files with 2 additions and 2 deletions

View file

@ -54,4 +54,4 @@ jobs:
run: cargo fmt --all -- --check
- name: Docs
run: cargo doc --features docs,unstable
run: cargo doc --features docs

View file

@ -50,7 +50,7 @@ matrix:
rust: nightly
os: linux
script:
- cargo doc --features docs,unstable
- cargo doc --features docs
- name: book
rust: nightly