Skip to content

Commit 03c9828

Browse files
chore(treewide): Fix typo
CI really wants this fixed suddenly.
1 parent 35d9002 commit 03c9828

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::{
77
use anyhow_ext::{Context, Result, bail};
88
use futures::{StreamExt, TryStreamExt};
99
use user::User;
10-
use zitadel::{SkipableZitadelResult, Zitadel};
10+
use zitadel::{SkippableZitadelResult, Zitadel};
1111
use zitadel_rust_client::v2::users::{SetHumanProfile, UpdateHumanUserRequest};
1212

1313
mod config;

src/zitadel.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ trait GenericCombinatorsExt {
509509
impl<X> GenericCombinatorsExt for X {}
510510

511511
/// Helper trait for skippable zitadel errors to use with `[SkippedErrors]`
512-
pub trait SkipableZitadelResult<X: Send> {
512+
pub trait SkippableZitadelResult<X: Send> {
513513
/// Helper method for skippable zitadel errors to use with `[SkippedErrors]`
514514
fn skip_zitadel_error(
515515
self,
@@ -518,7 +518,7 @@ pub trait SkipableZitadelResult<X: Send> {
518518
) -> Option<X>;
519519
}
520520

521-
impl<X: Send> SkipableZitadelResult<X> for Result<X> {
521+
impl<X: Send> SkippableZitadelResult<X> for Result<X> {
522522
fn skip_zitadel_error(
523523
self,
524524
operation: &'static str,

0 commit comments

Comments
 (0)