From 4c0015ba5bd5e82372be10137b5e00e16cb99d54 Mon Sep 17 00:00:00 2001 From: "Robert McLaws (Microsoft MVP)" Date: Wed, 12 Oct 2016 15:04:38 -0400 Subject: [PATCH] Spelling fix --- .../Model/ModelProducer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Restier.Providers.EntityFramework/Model/ModelProducer.cs b/src/Microsoft.Restier.Providers.EntityFramework/Model/ModelProducer.cs index be592cfa..b956d8bf 100644 --- a/src/Microsoft.Restier.Providers.EntityFramework/Model/ModelProducer.cs +++ b/src/Microsoft.Restier.Providers.EntityFramework/Model/ModelProducer.cs @@ -70,7 +70,7 @@ public Task GetModelAsync(ModelContext context, CancellationToken can // continue to work. var efEntityContainer = efEntityContainers.FirstOrDefault(c => c.Name == dbContext.GetType().Name); // @robertmclaws: Now that we're doing a proper FirstOrDefault() instead of a Single(), we wont' crash if more - // that one is returned, and we can check for null and inform the user specifically what happened. + // than one is returned, and we can check for null and inform the user specifically what happened. if (efEntityContainer == null) { if (efEntityContainers.Count > 1)