From f828e14c25d972b71d57afb419d22c49ecad11d0 Mon Sep 17 00:00:00 2001 From: Suggon Date: Sat, 31 Aug 2024 16:55:53 +0545 Subject: [PATCH] fix typo: of -> or (#35656) --- files/en-us/web/api/navigation/traverseto/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/api/navigation/traverseto/index.md b/files/en-us/web/api/navigation/traverseto/index.md index 9bbb3a970e577ac..3863915e821e96b 100644 --- a/files/en-us/web/api/navigation/traverseto/index.md +++ b/files/en-us/web/api/navigation/traverseto/index.md @@ -42,7 +42,7 @@ Either one of these promises rejects if the navigation has failed for some reaso ### Exceptions - `InvalidStateError` {{domxref("DOMException")}} - - : Thrown if the {{domxref("Navigation.currentEntry")}}'s {{domxref("NavigationHistoryEntry.index")}} value is -1, meaning the current {{domxref("Document")}} is not yet active, of if the navigation history list does not contain a {{domxref("NavigationHistoryEntry")}} with the specified key, or if the current {{domxref("Document")}} is unloading. + - : Thrown if the {{domxref("Navigation.currentEntry")}}'s {{domxref("NavigationHistoryEntry.index")}} value is -1, meaning the current {{domxref("Document")}} is not yet active, or if the navigation history list does not contain a {{domxref("NavigationHistoryEntry")}} with the specified key, or if the current {{domxref("Document")}} is unloading. ## Examples