Skip to content

Commit

Permalink
Rename a generic param
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 6, 2024
1 parent 23caf4a commit 26ba0e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,15 +110,15 @@ where
/// - `persist` - a user-provided `Persist` implementation
/// - `handler` - a user-provided DM handler implementation
/// - `user` - a user-provided future that will be polled only when the netif interface is up
pub async fn run<'d, I, P, H, U>(
pub async fn run<'d, N, P, H, U>(
&self,
netif: I,
netif: N,
persist: P,
handler: H,
user: U,
) -> Result<(), Error>
where
I: Netif + UdpBind,
N: Netif + UdpBind,
P: Persist,
H: AsyncHandler + AsyncMetadata,
U: Future<Output = Result<(), Error>>,
Expand Down

0 comments on commit 26ba0e2

Please sign in to comment.