From 3a66b2bd80d702ad32275a4ed9e8d732ef087e73 Mon Sep 17 00:00:00 2001 From: David Rouyer Date: Tue, 16 Jan 2018 14:17:41 +0100 Subject: [PATCH] Typo --- src/Squidex.Infrastructure/ValidationError.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Squidex.Infrastructure/ValidationError.cs b/src/Squidex.Infrastructure/ValidationError.cs index eb1c6c651..69eca55d6 100644 --- a/src/Squidex.Infrastructure/ValidationError.cs +++ b/src/Squidex.Infrastructure/ValidationError.cs @@ -11,7 +11,7 @@ namespace Squidex.Infrastructure { public sealed class ValidationError { - private static readonly string[] FalbackProperties = new string[0]; + private static readonly string[] FallbackProperties = new string[0]; private readonly string message; private readonly string[] propertyNames; @@ -31,7 +31,7 @@ namespace Squidex.Infrastructure this.message = message; - this.propertyNames = propertyNames ?? FalbackProperties; + this.propertyNames = propertyNames ?? FallbackProperties; } } -} \ No newline at end of file +}