Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eserilev committed Jul 30, 2024
1 parent 2436185 commit c9a4f5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/primitives/src/bits/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ pub use function::Function;
mod rlp;

#[cfg(feature = "serde")]
mod serde;
mod serde;
10 changes: 5 additions & 5 deletions crates/sol-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ use syn::parse_macro_input;
/// ```ignore
#[doc = include_str!("../doctests/structs.rs")]
/// ```
///
///
/// ### UDVT and type aliases
///
/// User defined value types (UDVT) generate a tuple struct with the type as
Expand All @@ -164,7 +164,7 @@ use syn::parse_macro_input;
/// ```ignore
#[doc = include_str!("../doctests/types.rs")]
/// ```
///
///
/// ### State variables
///
/// Public and external state variables will generate a getter function just like in Solidity.
Expand All @@ -187,7 +187,7 @@ use syn::parse_macro_input;
/// ```ignore
#[doc = include_str!("../doctests/function_like.rs")]
/// ```
///
///
/// ### Events
///
/// Events generate a struct that implements `SolEvent`.
Expand All @@ -199,7 +199,7 @@ use syn::parse_macro_input;
/// ```ignore
#[doc = include_str!("../doctests/events.rs")]
/// ```
///
///
/// ### Contracts/interfaces
///
/// Contracts generate a module with the same name, which contains all the items.
Expand All @@ -212,7 +212,7 @@ use syn::parse_macro_input;
/// ```ignore
#[doc = include_str!("../doctests/contracts.rs")]
/// ```
///
///
/// ## JSON ABI
///
/// Contracts can also be generated from ABI JSON strings and files, similar to
Expand Down

0 comments on commit c9a4f5f

Please sign in to comment.