From 4e429e4408293b6bbfb0909e07cd48181d5dc874 Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Mon, 14 Jul 2025 12:41:56 +0200 Subject: [PATCH] radicle: Fix doctests --- crates/radicle/src/cob/patch/actions.rs | 4 ++-- crates/radicle/src/cob/patch/encoding/review.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/radicle/src/cob/patch/actions.rs b/crates/radicle/src/cob/patch/actions.rs index 6924c5fc..e5768f7b 100644 --- a/crates/radicle/src/cob/patch/actions.rs +++ b/crates/radicle/src/cob/patch/actions.rs @@ -26,9 +26,9 @@ pub enum ReviewEdit { /// The latest version of editing a review. /// /// This allows editing the `summary`, `verdict`, `labels` of [`Patch`], and - /// introduces `embeds` to the review [`summary`]. + /// introduces `embeds` to the review summary. /// - /// The `summary` of a [`Review`] is now an edit-history. + /// The `summary` of a [`super::Review`] is now an edit-history. #[serde(rename = "review.edit.v2")] V2(ReviewEditV2), } diff --git a/crates/radicle/src/cob/patch/encoding/review.rs b/crates/radicle/src/cob/patch/encoding/review.rs index 306b64a9..bb60b0f1 100644 --- a/crates/radicle/src/cob/patch/encoding/review.rs +++ b/crates/radicle/src/cob/patch/encoding/review.rs @@ -20,7 +20,7 @@ use crate::cob::patch::{ /// The encoding for a `patch::Review` that can be deserialized and migrated. /// /// To maintain backwards-compatibility, [`Review`] must implement: -/// ```rust, no_run +/// ```rust, ignore /// From for patch::Review /// ``` #[derive(Deserialize)]