Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauxjpn committed Nov 18, 2023
1 parent ff989f1 commit 1c0826d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected override Expression VisitExtension(Expression extensionExpression)
CrossApplyExpression crossApplyExpression => VisitCrossApply(crossApplyExpression),
OuterApplyExpression outerApplyExpression => VisitOuterApply(outerApplyExpression),
ExceptExpression exceptExpression => VisitExcept(exceptExpression),
IntersectExpression intersectExpression => VisitIntercept(intersectExpression),
IntersectExpression intersectExpression => VisitIntersect(intersectExpression),
JsonScalarExpression jsonScalarExpression => VisitJsonScalar(jsonScalarExpression),
MySqlJsonTableExpression jsonTableExpression => VisitJsonTable(jsonTableExpression),

Expand All @@ -62,7 +62,7 @@ protected virtual Expression VisitOuterApply(OuterApplyExpression outerApplyExpr
protected virtual Expression VisitExcept(ExceptExpression exceptExpression)
=> CheckSupport(exceptExpression, _options.ServerVersion.Supports.ExceptIntercept);

protected virtual Expression VisitIntercept(IntersectExpression intersectExpression)
protected virtual Expression VisitIntersect(IntersectExpression intersectExpression)
=> CheckSupport(intersectExpression, _options.ServerVersion.Supports.ExceptIntercept);

protected virtual Expression VisitJsonScalar(JsonScalarExpression jsonScalarExpression)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ protected override Expression VisitMethodCall(MethodCallExpression methodCallExp
}

/// <summary>
/// EF Core does forward the current QueryCompilationContext to IMethodCallTranslator implementations.
/// EF Core does not forward the current QueryCompilationContext to IMethodCallTranslator implementations.
/// Our MySqlMethodCallTranslatorProvider and MySqlQueryCompilationContextMethodTranslator implementations take care of that.
/// </summary>
private Expression CallBaseVisitMethodCall(MethodCallExpression methodCallExpression)
Expand Down

0 comments on commit 1c0826d

Please sign in to comment.