From 77e13b817aa40ab997ee945594bfaa58fc950fe6 Mon Sep 17 00:00:00 2001 From: Georg Date: Tue, 19 Nov 2024 00:37:51 +0000 Subject: [PATCH] Correct spelling of occurred (#3222) Signed-off-by: Georg Pfuetzenreuter --- server/core/templates/unrecoverable_error.html | 2 +- server/lib/src/server/migrations.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server/core/templates/unrecoverable_error.html b/server/core/templates/unrecoverable_error.html index 71f2aa41b..068d8fc89 100644 --- a/server/core/templates/unrecoverable_error.html +++ b/server/core/templates/unrecoverable_error.html @@ -8,7 +8,7 @@ (% block body %)

Error

-

An unrecoverable error occured. Please contact your administrator with the details below.

+

An unrecoverable error occurred. Please contact your administrator with the details below.

Error Code: (( err_code ))

Operation ID: (( operation_id ))

diff --git a/server/lib/src/server/migrations.rs b/server/lib/src/server/migrations.rs index bf4f72bbb..73ee0f666 100644 --- a/server/lib/src/server/migrations.rs +++ b/server/lib/src/server/migrations.rs @@ -179,7 +179,7 @@ impl QueryServer { // Execute whatever operations we have batched up and ready to go. This is needed // to preserve ordering of the operations - if we reloaded after a remigrate then - // we would have skipped the patch level fix which needs to have occured *first*. + // we would have skipped the patch level fix which needs to have occurred *first*. if reload_required { write_txn.reload()?; // We are not yet at the schema phase where reindexes will auto-trigger