Skip to content

Commit

Permalink
Merge pull request #29 from fluxxcode/doc/fix_typos
Browse files Browse the repository at this point in the history
Fix typos in documentation
  • Loading branch information
fluxxcode authored Feb 11, 2024
2 parents 254b471 + 2f6202a commit 06a4e7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# egui-file-dialog changelog

## Unreleased
### 📚 Documentation
- Fix typos in the documentation [#29](https://github.com/fluxxcode/egui-file-dialog/pull/29)

## 2024-02-07 - v0.2.0 - API improvements
### 🚨 Breaking Changes
- Rename `FileDialog::default_window_size` to `FileDialog::default_size` [#14](https://github.com/fluxxcode/egui-file-dialog/pull/14)
Expand Down
4 changes: 2 additions & 2 deletions src/file_dialog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ impl FileDialog {
/// # Examples
///
/// The following example shows how the dialog can be used for multiple
/// actions using the `operation_id``.
/// actions using the `operation_id`.
///
/// ```
/// use std::path::PathBuf;
Expand Down Expand Up @@ -441,7 +441,7 @@ impl FileDialog {

/// Returns the ID of the operation for which the dialog is currently being used.
///
/// See `FileDialog::open` more information.
/// See `FileDialog::open` for more information.
pub fn operation_id(&self) -> Option<&str> {
self.operation_id.as_deref()
}
Expand Down

0 comments on commit 06a4e7a

Please sign in to comment.