Skip to content

Commit 769157f

Browse files
doc: fix docs for rustc 1.92+ (#1470)
## What changes are proposed in this pull request? Noticed docs didn't build successfully for [0.17.0 release](https://docs.rs/crate/delta_kernel/0.17.0/builds/2652981) since in rustc 1.92 the `doc_auto_cfg` feature was removed (and TIL docs.rs builds with nightly). This pr just moves from the `doc_auto_cfg` to `doc_cfg` (see associated [rust pr](rust-lang/rust#138907)). ## How was this change tested? docs only. reproed with `cargo +nightly doc`
1 parent 062a0fe commit 769157f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
//! connectors are asked to provide the context information they require to execute the actual
5151
//! operation. This is done by invoking methods on the [`StorageHandler`] trait.
5252
53-
#![cfg_attr(all(doc, NIGHTLY_CHANNEL), feature(doc_auto_cfg))]
53+
#![cfg_attr(all(doc, NIGHTLY_CHANNEL), feature(doc_cfg))]
5454
#![warn(
5555
unreachable_pub,
5656
trivial_numeric_casts,

0 commit comments

Comments
 (0)