From dfae667ab9920e1aa6c65dd430ab310356e1af26 Mon Sep 17 00:00:00 2001 From: Michael Krueske Date: Fri, 23 May 2014 12:36:05 +0200 Subject: [PATCH] Removed some warnings regarding xml comments. --- Source/EntityFramework.Extended/Caching/CacheManager.cs | 2 +- Source/EntityFramework.Extended/Caching/Query/Evaluator.cs | 6 +++--- .../EntityFramework.Extended/Extensions/BatchExtensions.cs | 4 ++-- Source/EntityFramework.Extended/Future/FutureValue.cs | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/EntityFramework.Extended/Caching/CacheManager.cs b/Source/EntityFramework.Extended/Caching/CacheManager.cs index bc9f35a..1776d0a 100644 --- a/Source/EntityFramework.Extended/Caching/CacheManager.cs +++ b/Source/EntityFramework.Extended/Caching/CacheManager.cs @@ -15,7 +15,7 @@ namespace EntityFramework.Caching /// /// /// The CacheManager also supports tagging the cache entry to support expiring by tag. supports a list - /// of tags to associate with the cache entry. Use to evict the cache entry by . + /// of tags to associate with the cache entry. Use to evict the cache entry by . /// /// /// diff --git a/Source/EntityFramework.Extended/Caching/Query/Evaluator.cs b/Source/EntityFramework.Extended/Caching/Query/Evaluator.cs index 20fdf9f..a268935 100644 --- a/Source/EntityFramework.Extended/Caching/Query/Evaluator.cs +++ b/Source/EntityFramework.Extended/Caching/Query/Evaluator.cs @@ -14,7 +14,7 @@ namespace EntityFramework.Caching internal static class Evaluator { /// - /// Performs evaluation & replacement of independent sub-trees + /// Performs evaluation & replacement of independent sub-trees /// /// The root of the expression tree. /// A function that decides whether a given expression node can be part of the local function. @@ -25,7 +25,7 @@ public static Expression PartialEval(Expression expression, Func - /// Performs evaluation & replacement of independent sub-trees + /// Performs evaluation & replacement of independent sub-trees /// /// The root of the expression tree. /// A new tree with sub-trees evaluated and replaced. @@ -40,7 +40,7 @@ private static bool CanBeEvaluatedLocally(Expression expression) } /// - /// Evaluates & replaces sub-trees when first candidate is reached (top-down) + /// Evaluates & replaces sub-trees when first candidate is reached (top-down) /// class SubtreeEvaluator : ExpressionVisitor { diff --git a/Source/EntityFramework.Extended/Extensions/BatchExtensions.cs b/Source/EntityFramework.Extended/Extensions/BatchExtensions.cs index 2180d6b..de2f046 100644 --- a/Source/EntityFramework.Extended/Extensions/BatchExtensions.cs +++ b/Source/EntityFramework.Extended/Extensions/BatchExtensions.cs @@ -73,7 +73,7 @@ public static int Delete( /// Executes a delete statement using the query to filter the rows to be deleted. /// /// The type of the entity. - /// The used to generate the where clause for the delete statement. + /// The used to generate the where clause for the delete statement. /// The number of row deleted. /// Delete all users with email domain @test.com. /// DeleteAsync( /// Executes a delete statement asynchronously using the query to filter the rows to be deleted. /// /// The type of the entity. - /// The used to generate the where clause for the delete statement. + /// The used to generate the where clause for the delete statement. /// The number of row deleted. /// Delete all users with email domain @test.com. /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from to . /// /// The future value. /// The result of forcing this lazy value.