diff --git a/docs/csharp/expression-classes.md b/docs/csharp/expression-classes.md index c9a2ff1bf02b5..9fff86b31119e 100644 --- a/docs/csharp/expression-classes.md +++ b/docs/csharp/expression-classes.md @@ -16,7 +16,7 @@ Rather than run through the full list, let's understand how the framework classe In language design, an expression is a body of code that evaluates and returns a value. Expressions may be very simple: the constant expression `1` returns the constant value of 1. They may be more -complicated: The expression `(-B + Math.Sqrt(B*B + 4 * A * C)) / (2 * A)` returns one root for a +complicated: The expression `(-B + Math.Sqrt(B*B - 4 * A * C)) / (2 * A)` returns one root for a quadratic equation (in the case where the equation has a solution). ## It all starts with System.Linq.Expression diff --git a/docs/csharp/programming-guide/concepts/iterators.md b/docs/csharp/programming-guide/concepts/iterators.md index 115c3476a92ee..3b597f117d7fb 100644 --- a/docs/csharp/programming-guide/concepts/iterators.md +++ b/docs/csharp/programming-guide/concepts/iterators.md @@ -212,7 +212,7 @@ public class Zoo : IEnumerable ``` ## Using Iterators with a Generic List - In the following example, the `Stack(Of T)` generic class implements the generic interface. The `Push` method assigns values to an array of type `T`. The method returns the array values by using the `yield return` statement. + In the following example, the generic class implements the generic interface. The method assigns values to an array of type `T`. The method returns the array values by using the `yield return` statement. In addition to the generic method, the non-generic method must also be implemented. This is because inherits from . The non-generic implementation defers to the generic implementation. diff --git a/docs/standard/microservices-architecture/implement-resilient-applications/implement-resilient-entity-framework-core-sql-connections.md b/docs/standard/microservices-architecture/implement-resilient-applications/implement-resilient-entity-framework-core-sql-connections.md index dc26e59876198..a648550442e59 100644 --- a/docs/standard/microservices-architecture/implement-resilient-applications/implement-resilient-entity-framework-core-sql-connections.md +++ b/docs/standard/microservices-architecture/implement-resilient-applications/implement-resilient-entity-framework-core-sql-connections.md @@ -90,4 +90,4 @@ The first DbContext is \_catalogContext and the second DbContext is within the \ >[!div class="step-by-step"] [Previous](implement-retries-exponential-backoff.md) -[Next]explore-custom-http-call-retries-exponential-backoff.md) +[Next](explore-custom-http-call-retries-exponential-backoff.md)