From 1dd3bb5cbb16f457ed7a87e9fcd66b9905e4bd45 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 16 Jan 2025 15:07:36 -0500 Subject: [PATCH] cxx-qt-lib: Change to_be() to use the correct doc comment syntax --- crates/cxx-qt-lib/src/core/quuid.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cxx-qt-lib/src/core/quuid.rs b/crates/cxx-qt-lib/src/core/quuid.rs index aa4168b8d..94759c09c 100644 --- a/crates/cxx-qt-lib/src/core/quuid.rs +++ b/crates/cxx-qt-lib/src/core/quuid.rs @@ -219,7 +219,7 @@ impl QUuid { } /// Converts self to big endian from the target’s endianness. - // This function is analogous to [`u8::to_be`](https://doc.rust-lang.org/src/core/num/uint_macros.rs.html#399-431). + /// This function is analogous to [`u8::to_be`](https://doc.rust-lang.org/src/core/num/uint_macros.rs.html#399-431). /// /// On big endian this is a no-op. On little endian the bytes are swapped. ///