Skip to content

Commit

Permalink
Fix misc. format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
cassaundra committed Jan 7, 2025
1 parent fb7629f commit bba989a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::pin::Pin;
target_os = "netbsd",
target_os = "openbsd"
),
not(feature = "gtk3")
not(feature = "gtk3"),
))]
mod linux;

Expand All @@ -24,7 +24,7 @@ mod linux;
target_os = "netbsd",
target_os = "openbsd"
),
feature = "gtk3"
feature = "gtk3",
))]
mod gtk3;
#[cfg(target_os = "macos")]
Expand All @@ -41,7 +41,7 @@ mod win_cid;
target_os = "netbsd",
target_os = "openbsd"
),
not(feature = "gtk3")
not(feature = "gtk3"),
))]
mod xdg_desktop_portal;

Expand Down

0 comments on commit bba989a

Please sign in to comment.