diff --git a/kube-client/src/client/client_ext.rs b/kube-client/src/client/client_ext.rs index 7f9fe60df..48704ea07 100644 --- a/kube-client/src/client/client_ext.rs +++ b/kube-client/src/client/client_ext.rs @@ -43,7 +43,6 @@ pub struct Cluster; pub struct Namespace(String); /// Scopes for `unstable-client` [`Client#impl-Client`] extension methods -#[cfg_attr(docsrs, doc(cfg(any(feature = "unstable-client"))))] pub mod scope { pub use super::{Cluster, Namespace}; } @@ -156,7 +155,6 @@ pub enum NamespaceError { /// # Ok(()) /// # } /// ``` -#[cfg_attr(docsrs, doc(cfg(feature = "unstable-client")))] impl Client { /// Get a single instance of a `Resource` implementing type `K` at the specified scope. /// diff --git a/kube-client/src/config/mod.rs b/kube-client/src/config/mod.rs index 3d9e2be77..a60935960 100644 --- a/kube-client/src/config/mod.rs +++ b/kube-client/src/config/mod.rs @@ -122,7 +122,7 @@ pub enum LoadDataError { /// Prefer [`Config::infer`] unless you have particular issues, and avoid manually managing /// the data in this struct unless you have particular needs. It exists to be consumed by the [`Client`][crate::Client]. /// -/// If you are looking to parse the kubeconfig found in a user's home directory see [`Kubeconfig`](crate::config::Kubeconfig). +/// If you are looking to parse the kubeconfig found in a user's home directory see [`Kubeconfig`]. #[cfg_attr(docsrs, doc(cfg(feature = "config")))] #[derive(Debug, Clone)] pub struct Config {