From 8b235859649adb89873a41ec34529df596f77582 Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 20:40:25 -0700 Subject: [PATCH] schema: fix 'occured' -> 'occurred' in error derive strings Two #[error] derive strings in libsql-server/src/schema/error.rs (lines 24, 28) read 'error occured'. Fixed to 'occurred'. Error-display-only change. Signed-off-by: SAY-5 --- libsql-server/src/schema/error.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsql-server/src/schema/error.rs b/libsql-server/src/schema/error.rs index 13f21f3c15..b5807239d9 100644 --- a/libsql-server/src/schema/error.rs +++ b/libsql-server/src/schema/error.rs @@ -21,11 +21,11 @@ pub enum Error { SchemaDoesntExist(NamespaceName), #[error("A migration job is already in progress for `{0}`")] MigrationJobAlreadyInProgress(NamespaceName), - #[error("An error occured executing the migration at step {0}: {1}")] + #[error("An error occurred executing the migration at step {0}: {1}")] MigrationError(usize, String), #[error("migration is invalid: it contains transaction items (BEGIN, COMMIT, SAVEPOINT...) which are not allowed. The migration is already run within a transaction")] MigrationContainsTransactionStatements, - #[error("an error occured while backing up the meta store")] + #[error("an error occurred while backing up the meta store")] MetaStoreBackupFailure, #[error("Failed to load namespace: {0}")] NamespaceLoad(BoxError),