From 4eb5c003819b5b36fa234b4c1d6d7175e02ff12e Mon Sep 17 00:00:00 2001 From: Caro Caserio Date: Thu, 31 May 2018 21:16:21 -0300 Subject: [PATCH 1/4] C18280: Incorrect link structure (#5709) --- docs/core/tools/cli-msbuild-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/tools/cli-msbuild-architecture.md b/docs/core/tools/cli-msbuild-architecture.md index baddc27fc802c..e5fd369ba85c3 100644 --- a/docs/core/tools/cli-msbuild-architecture.md +++ b/docs/core/tools/cli-msbuild-architecture.md @@ -61,5 +61,5 @@ This command is publishing an application into a `pub` folder using the "Release The notable exception to this rule are `new` and `run` commands, as they have not been implemented as MSBuild targets. - - [!INCLUDE[DotNet Restore Note](~/includes/dotnet-restore-note.md)] \ No newline at end of file + +[!INCLUDE[DotNet Restore Note](~/includes/dotnet-restore-note.md)] From 60ddd2f918baccc1b4d109d26829892bab4056a7 Mon Sep 17 00:00:00 2001 From: Fredrik Eilertsen Date: Fri, 13 Jul 2018 17:18:15 +0200 Subject: [PATCH 2/4] Update implement-resilient-entity-framework-core-sql-connections.md (#6441) Fix broken link --- ...implement-resilient-entity-framework-core-sql-connections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From 2d8b7488d94101b534ca3e9780b1c1e840233405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Y=CE=B5r=CE=B5m=CE=B5e?= Date: Sat, 21 Jul 2018 18:27:20 +0300 Subject: [PATCH 3/4] Make links for APIs (#6595) --- docs/csharp/programming-guide/concepts/iterators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From 5dd45976a93405796195759716652273caaeaa4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=AD=E4=B9=9D=E9=BC=8E?= <109224573@qq.com> Date: Sun, 22 Jul 2018 22:42:40 +0800 Subject: [PATCH 4/4] Fix quadratic formula for the roots --- docs/csharp/expression-classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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