From f9572d9df762b9ce92fbe4c1a18ff59b9f4f3b01 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:17:45 -0400 Subject: [PATCH] spelling: exception Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- doc/AddonStorageBackend.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/AddonStorageBackend.md b/doc/AddonStorageBackend.md index 07cc020b8..9dcb3e95a 100644 --- a/doc/AddonStorageBackend.md +++ b/doc/AddonStorageBackend.md @@ -140,18 +140,18 @@ abstract class StorageTest There are two intended types of exceptions for storages -### `ReferenceStorageExecption` +### `ReferenceStorageException` This storage exception should be used in case the caller tries to use an invalid references. This could happen in case the caller tries to delete or update an unknown reference. The implementation of the storage backend must not ignore invalid references. -Avoid throwing the common `StorageExecption` instead of the `ReferenceStorageException` at this particular situation! +Avoid throwing the common `StorageException` instead of the `ReferenceStorageException` at this particular situation! ### `StorageException` This is the common exception in case unexpected errors happen using the storage backend. -If there's a predecessor to this exception (e.g. you caught an exception and are throwing this execption), you should add the predecessor for transparency reasons. +If there's a predecessor to this exception (e.g. you caught an exception and are throwing this exception), you should add the predecessor for transparency reasons. Example: