From ab252637becb5d461ce7817ba7edde947800849a Mon Sep 17 00:00:00 2001 From: fluxxcode Date: Sun, 11 Feb 2024 22:08:54 +0100 Subject: [PATCH 1/2] Fix typos --- src/file_dialog.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file_dialog.rs b/src/file_dialog.rs index 89105a88..be0680ff 100644 --- a/src/file_dialog.rs +++ b/src/file_dialog.rs @@ -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; @@ -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() } From 2f6202afa33c8b88353cbe362e6f8be87171d921 Mon Sep 17 00:00:00 2001 From: fluxxcode Date: Sun, 11 Feb 2024 22:10:46 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac2b7db1..9722d8d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)