mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-31 16:40:37 +01:00
Fix docs for all!
and any!
macroses
This commit is contained in:
parent
5d0bb05ee6
commit
e95ffe13b7
1 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ pub fn not<A>(a: A) -> Not<A> {
|
||||||
Not::new(a)
|
Not::new(a)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Return [filter] that passes if and only if all given filters passes.
|
/// Return [filter] that passes if and only if all of the given filters passes.
|
||||||
///
|
///
|
||||||
/// **NOTE**: if one of filters don't pass
|
/// **NOTE**: if one of filters don't pass
|
||||||
/// it is **not** guaranteed that other will be executed.
|
/// it is **not** guaranteed that other will be executed.
|
||||||
|
@ -211,7 +211,7 @@ macro_rules! all {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Return [filter] that passes if and only if any given filters passes.
|
/// Return [filter] that passes if any of the given filters passes.
|
||||||
///
|
///
|
||||||
/// **NOTE**: if one of filters passes
|
/// **NOTE**: if one of filters passes
|
||||||
/// it is **not** guaranteed that other will be executed.
|
/// it is **not** guaranteed that other will be executed.
|
||||||
|
|
Loading…
Reference in a new issue