Skip to content

Commit

Permalink
restore
Browse files Browse the repository at this point in the history
  • Loading branch information
akorchyn committed Jan 30, 2025
1 parent 92a9fab commit 499d0ce
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions near-sdk-macros/src/core_impl/abi/abi_generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,22 +44,10 @@ impl ImplItemMethodInfo {
///
/// # Example:
/// The following function:
/// ```rust
/// # use near_sdk::{near};
/// # #[near(contract_state)]
/// # #[derive(Default)]
/// # pub struct Counter {
/// # val: u64,
/// # }
///
/// # #[near]
/// # impl Counter {
/// ```ignore
/// /// I am a function.
/// #[handle_result]
/// pub fn f3(&mut self, arg0: FancyStruct, arg1: u64) -> Result<IsOk, Error> {
/// # unimplemented!()
/// }
/// #}
/// pub fn f3(&mut self, arg0: FancyStruct, arg1: u64) -> Result<IsOk, Error> { }
/// ```
/// will produce this struct:
/// ```ignore
Expand Down

0 comments on commit 499d0ce

Please sign in to comment.