From b8fcca5635c0154f5fd37aa3e334e2e22bc5cebf Mon Sep 17 00:00:00 2001 From: Ferdinando Papale <4850119+papafe@users.noreply.github.com> Date: Thu, 2 Feb 2023 11:28:59 +0100 Subject: [PATCH] Fixed space --- packages/realm/src/assert.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/realm/src/assert.ts b/packages/realm/src/assert.ts index 39f19a5a41..c07879be8a 100644 --- a/packages/realm/src/assert.ts +++ b/packages/realm/src/assert.ts @@ -21,7 +21,7 @@ import { AssertionError, DefaultObject, Realm, TypeAssertionError, binding } fro /** * Expects the condition to be truthy * @throws {@link Error} If the condition is not truthy. Throws either the {@link err} given as param if it's an {@link Error}, - * an {@link AssertionError} wrapping {@link err} if it's a string or undefined, or uses the result of invoking {@link err} if it's a function. + * an {@link AssertionError} wrapping {@link err} if it's a string or undefined, or uses the result of invoking {@link err} if it's a function. * @param condition The condition that must be truthy to avoid throwing. * @param err Optional message or error to throw. * Or a function producing this, which is useful to avoid computing the error message in case it's not needed.