From c9895869d7ad9df00104f720712fead58a41a8ae Mon Sep 17 00:00:00 2001 From: Sebastian Romero Date: Thu, 19 Oct 2023 14:35:55 +0200 Subject: [PATCH] Fix typos --- docs/api.md | 4 ++-- src/InternalStorage.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api.md b/docs/api.md index b9e4bbb..5aa0520 100644 --- a/docs/api.md +++ b/docs/api.md @@ -336,7 +336,7 @@ Represents internal storage using the Arduino Unified Storage library. `public virtual ` [`Folder`](#class_folder)` ` [`getRootFolder`](#class_internal_storage_1a87142ddbdad62217e33851b32572082d)`()` | Retrieves the root folder of the internal storage. `public void ` [`setQSPIPartition`](#class_internal_storage_1a2ca8680537077ca3e189be2ca6dcc634)`(int partition)` | Sets the QSPI partition number. `public void ` [`setQSPIPartitionName`](#class_internal_storage_1ae0fbe264a758a4026548df66ec05f8c8)`(const char * name)` | Sets the QSPI partition name. -`public virtual bool ` [`format`](#class_internal_storage_1a9ee819a55de5d411e6b10bdc9942c601)`(FileSystems fs)` | Formats the internal storage with the selceted file system. +`public virtual bool ` [`format`](#class_internal_storage_1a9ee819a55de5d411e6b10bdc9942c601)`(FileSystems fs)` | Formats the internal storage with the selected file system. ## Members @@ -410,7 +410,7 @@ Sets the QSPI partition name. ### `public virtual bool ` [`format`](#class_internal_storage_1a9ee819a55de5d411e6b10bdc9942c601)`(FileSystems fs)` -Formats the internal storage with the selceted file system. +Formats the internal storage with the selected file system. #### Returns true if successful, false if failed. diff --git a/src/InternalStorage.h b/src/InternalStorage.h index 83e0f83..326b44c 100644 --- a/src/InternalStorage.h +++ b/src/InternalStorage.h @@ -66,7 +66,7 @@ class InternalStorage : public Arduino_UnifiedStorage { void setQSPIPartitionName(const char *name); /** - * Formats the internal storage with the selceted file system. + * Formats the internal storage with the selected file system. * * @return true if successful, false if failed. */