fix typos
This commit is contained in:
parent
ec4b3880b1
commit
76725b2db8
4 changed files with 6 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@
|
|||
node_modules
|
||||
src/*.mjs
|
||||
.DS_Store
|
||||
.idea
|
|
@ -420,7 +420,7 @@ pub async fn rename_file(
|
|||
/// ```rust,no_run
|
||||
/// use tauri_sys::fs;
|
||||
///
|
||||
/// fs::write_binary_file(path, contents, BaseDirectory::Download).expect("could not writet binary file");
|
||||
/// fs::write_binary_file(path, contents, BaseDirectory::Download).expect("could not writes binary file");
|
||||
/// ```
|
||||
///
|
||||
/// Requires [`allowlist > fs > writeBinaryFile`](https://tauri.app/v1/api/js/fs) to be enabled.
|
||||
|
@ -448,7 +448,7 @@ pub async fn write_binary_file(
|
|||
/// ```rust,no_run
|
||||
/// use tauri_sys::fs;
|
||||
///
|
||||
/// fs::write_text_file(path, contents, BaseDirectory::Download).expect("could not writet binary file");
|
||||
/// fs::write_text_file(path, contents, BaseDirectory::Download).expect("could not writes binary file");
|
||||
/// ```
|
||||
///
|
||||
/// Requires [`allowlist > fs > writeTextFile`](https://tauri.app/v1/api/js/fs) to be enabled.
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
//! #### Streams are buffered
|
||||
//!
|
||||
//! Streams, much like iterators, are poll-based meaning the caller is responsible for advancing it.
|
||||
//! This allows greater flexibilty as you can freely decide *when* to process events.
|
||||
//! This allows greater flexibility as you can freely decide *when* to process events.
|
||||
//! Event streams are internally backed by an unbounded queue so events are buffered until read,
|
||||
//! so no events are getting lost even if you temporarily pause processing.
|
||||
//!
|
||||
|
|
2
typos.toml
Normal file
2
typos.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[files]
|
||||
extend-exclude = ["tauri", "target"]
|
Loading…
Add table
Reference in a new issue