From 778c18c4a3ba4de03032891e0d238f63d1c166b0 Mon Sep 17 00:00:00 2001 From: Osvaldo Calles <510598+ocallesp@users.noreply.github.com> Date: Thu, 13 Oct 2022 12:10:55 -0700 Subject: [PATCH] Update type-forwarding.md --- docs/standard/assembly/type-forwarding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/assembly/type-forwarding.md b/docs/standard/assembly/type-forwarding.md index 5d013ae6d15d7..72cde3e02738e 100644 --- a/docs/standard/assembly/type-forwarding.md +++ b/docs/standard/assembly/type-forwarding.md @@ -53,7 +53,7 @@ Now, imagine that there is a consuming project and it's represented in the _Cons :::code language="csharp" source="snippets/type-forwarders/before/Consumer/Program.cs"::: -When the consuming app runs, it will output the state of the `Example` object. At this point, there is no type forwarding as the _Consuming.csproj_ references the _Utility.csproj_. However, the developer's of the _Utility_ assembly decide to remove the `Example` object as part of a refactoring. This tye is moved to a newly created _Common.csproj_. +When the consuming app runs, it will output the state of the `Example` object. At this point, there is no type forwarding as the _Consuming.csproj_ references the _Utility.csproj_. However, the developer's of the _Utility_ assembly decide to remove the `Example` object as part of a refactoring. This type is moved to a newly created _Common.csproj_. By removing this type from the _Utility_ assembly, the developers are introducing a breaking change. All consuming projects will break when they update to the latest _Utility_ assembly.