Skip to content

Commit 2c81e63

Browse files
committed
fix typo
1 parent 93ca603 commit 2c81e63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

iroh-willow/src/session/pai.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl PaiFinder {
137137

138138
async fn input(&mut self, input: Input) -> Result<(), Error> {
139139
match input {
140-
Input::SubmitAuthorisation(auth) => self.submit_autorisation(auth).await,
140+
Input::SubmitAuthorisation(auth) => self.submit_authorisation(auth).await,
141141
Input::ReceivedMessage(message) => match message? {
142142
IntersectionMessage::BindFragment(message) => self.receive_bind(message).await?,
143143
IntersectionMessage::ReplyFragment(message) => self.receive_reply(message).await?,
@@ -156,7 +156,7 @@ impl PaiFinder {
156156
Ok(())
157157
}
158158

159-
async fn submit_autorisation(&mut self, authorisation: ReadAuthorisation) {
159+
async fn submit_authorisation(&mut self, authorisation: ReadAuthorisation) {
160160
trace!(?authorisation, "pai submit auth");
161161
let read_cap = authorisation.read_cap();
162162
let fragment_kit = PaiScheme::get_fragment_kit(read_cap);

0 commit comments

Comments
 (0)