File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -686,9 +686,7 @@ where
686686}
687687
688688/// Return a list of all known team members.
689- fn all_team_members ( ) -> DashResult < Vec < GitHubUser > > {
690- specific_subteam_members ( |_| true )
691- }
689+ fn all_team_members ( ) -> DashResult < Vec < GitHubUser > > { specific_subteam_members ( |_| true ) }
692690
693691/// Check if an issue comment is written by a member of one of the subteams
694692/// labelled on the issue.
Original file line number Diff line number Diff line change 11macro_rules! ok_or {
22 ( $test: expr, $on_err: expr) => {
3- ok_or!( $test, _e => $on_err)
3+ ok_or!( $test, _e => $on_err)
44 } ;
55 ( $test: expr, $why: ident => $on_err: expr) => {
66 match $test {
@@ -12,7 +12,7 @@ macro_rules! ok_or {
1212
1313macro_rules! ok_or_continue {
1414 ( $test: expr, $why: ident => $on_err: expr) => {
15- ok_or!( $test, $why => { $on_err; continue ; } )
15+ ok_or!( $test, $why => { $on_err; continue ; } )
1616 } ;
1717}
1818
You can’t perform that action at this time.
0 commit comments