From 1c749c51abd42394a3b23a0bbc1b6a233137c896 Mon Sep 17 00:00:00 2001 From: DK Liao Date: Wed, 25 Oct 2023 21:12:45 +0800 Subject: [PATCH] Fix typo --- .changes/dox-fix.md | 2 +- src/value.rs | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.changes/dox-fix.md b/.changes/dox-fix.md index 9854e6c..57ab393 100644 --- a/.changes/dox-fix.md +++ b/.changes/dox-fix.md @@ -3,4 +3,4 @@ "javascriptcore-rs": patch --- -Properly replace dox with docrs to fix docs.rs building. \ No newline at end of file +Properly replace dox with docsrs to fix docs.rs building. \ No newline at end of file diff --git a/src/value.rs b/src/value.rs index 3999480..15b70d8 100644 --- a/src/value.rs +++ b/src/value.rs @@ -8,8 +8,8 @@ use std::ffi::c_void; use std::slice; impl Value { - #[cfg(any(feature = "v2_38", docrs))] - #[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] + #[cfg(any(feature = "v2_38", docsrs))] + #[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] #[doc(alias = "jsc_value_new_array_buffer")] pub fn new_array_buffer(context: &impl IsA, data: glib::Bytes) -> Option { let len = data.len(); @@ -33,20 +33,20 @@ impl Value { } pub trait ValueExtManual: 'static { - #[cfg(any(feature = "v2_38", docrs))] - #[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] + #[cfg(any(feature = "v2_38", docsrs))] + #[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] #[doc(alias = "jsc_value_array_buffer_get_data")] fn array_buffer_get_data(&self) -> &[u8]; - #[cfg(any(feature = "v2_38", docrs))] - #[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] + #[cfg(any(feature = "v2_38", docsrs))] + #[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] #[doc(alias = "jsc_value_typed_array_get_data")] fn typed_array_get_data(&self) -> TypedArrayData; } impl> ValueExtManual for O { - #[cfg(any(feature = "v2_38", docrs))] - #[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] + #[cfg(any(feature = "v2_38", docsrs))] + #[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] fn array_buffer_get_data(&self) -> &[u8] { unsafe { let mut len = 0; @@ -59,8 +59,8 @@ impl> ValueExtManual for O { } } - #[cfg(any(feature = "v2_38", docrs))] - #[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] + #[cfg(any(feature = "v2_38", docsrs))] + #[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] fn typed_array_get_data(&self) -> TypedArrayData { use crate::TypedArrayType::*; unsafe { @@ -91,8 +91,8 @@ impl> ValueExtManual for O { } } -#[cfg(any(feature = "v2_38", docrs))] -#[cfg_attr(docrs, doc(cfg(feature = "v2_38")))] +#[cfg(any(feature = "v2_38", docsrs))] +#[cfg_attr(docsrs, doc(cfg(feature = "v2_38")))] #[derive(Debug, Clone, Copy)] #[non_exhaustive] pub enum TypedArrayData<'a> {