From 9a93a78ae1b6b353cc663c1335d60487a724e67a Mon Sep 17 00:00:00 2001 From: Greg Colombo Date: Tue, 3 Oct 2023 20:10:20 +0000 Subject: [PATCH] fix doc build --- nexus/db-queries/src/db/queries/instance.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nexus/db-queries/src/db/queries/instance.rs b/nexus/db-queries/src/db/queries/instance.rs index ae6a98b13b..ac09488594 100644 --- a/nexus/db-queries/src/db/queries/instance.rs +++ b/nexus/db-queries/src/db/queries/instance.rs @@ -81,11 +81,11 @@ pub struct InstanceAndVmmUpdate { #[derive(Copy, Clone, PartialEq, Debug)] pub struct InstanceAndVmmUpdateResult { /// `Some(status)` if the target instance was found; the wrapped - /// [`UpdateStatus`] indicates whether the row was updated. `None` if the + /// `UpdateStatus` indicates whether the row was updated. `None` if the /// instance was not found. pub instance_status: Option, - /// `Some(status)` if the target VMM was found; the wrapped [`UpdateStatus`] + /// `Some(status)` if the target VMM was found; the wrapped `UpdateStatus` /// indicates whether the row was updated. `None` if the VMM was not found. pub vmm_status: Option, }