Skip to content

Commit

Permalink
Hopefully fix builds on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandawan committed Oct 25, 2021
1 parent 4606877 commit 6221195
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const notif = new Notification({ linux: true });
notif.icon('/path/to/icon');
```

Specifying platforms may also provide different documentation and typings for the `Notification` API.
Specifying platforms may also provide different documentation and typings for the `Notification` API.

For example, macOS has specific sound names that are available for Notifications; these are reflected in the macOS-specific Notification API.

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use deno_core::serde::Deserialize;
use deno_core::serde_json;
use notify_rust::{Error as NotifyRustError, Notification};
use notify_rust::{error::Error as NotifyRustError, Notification};

#[derive(Debug, Deserialize)]
struct NotificationOptions {
Expand Down

0 comments on commit 6221195

Please sign in to comment.