Эх сурвалжийг харах

Make rustdoc happy

Signed-off-by: Sean Young <sean@mess.org>
Sean Young 4 жил өмнө
parent
commit
d271cadb76
1 өөрчлөгдсөн 4 нэмэгдсэн , 4 устгасан
  1. 4 4
      src/lib.rs

+ 4 - 4
src/lib.rs

@@ -20,15 +20,15 @@ use std::fmt;
 /// The target chain you want to compile Solidity for.
 #[derive(PartialEq, Clone, Copy)]
 pub enum Target {
-    /// Parity Substrate, see https://substrate.dev/
+    /// Parity Substrate, see <https://substrate.dev/>
     Substrate,
-    /// Ethereum ewasm, see https://github.com/ewasm/design
+    /// Ethereum ewasm, see <https://github.com/ewasm/design>
     Ewasm,
-    /// Sawtooth Sabre, see https://github.com/hyperledger/sawtooth-sabre
+    /// Sawtooth Sabre, see <https://github.com/hyperledger/sawtooth-sabre>
     Sabre,
     /// Generate a generic object file for linking
     Generic,
-    /// Solana, see https://solana.com/
+    /// Solana, see <https://solana.com/>
     Solana,
 }