You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2023/05/31 15:36:16 UTC

[avro] branch branch-1.11 updated: AVRO-3766: [Rust] Fix the formatting

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/branch-1.11 by this push:
     new 54b426a4b AVRO-3766: [Rust] Fix the formatting
54b426a4b is described below

commit 54b426a4bb11fbc79fde9787bd090614394cd3f1
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
AuthorDate: Wed May 31 18:35:18 2023 +0300

    AVRO-3766: [Rust] Fix the formatting
    
    Signed-off-by: Martin Tzvetanov Grigorov <mg...@apache.org>
    (cherry picked from commit 79e5033578bb8a5c36d48b502c35ba4edd9826e8)
---
 lang/rust/avro_test_helper/src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/rust/avro_test_helper/src/lib.rs b/lang/rust/avro_test_helper/src/lib.rs
index 545bccc89..e2ab29eff 100644
--- a/lang/rust/avro_test_helper/src/lib.rs
+++ b/lang/rust/avro_test_helper/src/lib.rs
@@ -51,7 +51,7 @@ pub enum TestError {}
 
 /// A converter of any error into [TestError].
 /// It is used to print better error messages in the tests.
-/// Borrowed from https://bluxte.net/musings/2023/01/08/improving_failure_messages_rust_tests/
+/// Borrowed from <https://bluxte.net/musings/2023/01/08/improving_failure_messages_rust_tests/>
 impl<Err: std::fmt::Display> From<Err> for TestError {
     #[track_caller]
     fn from(err: Err) -> Self {