From 0ab23ca2b305f4c5c627a532c98e653bd55f097c Mon Sep 17 00:00:00 2001 From: Thomas Gassmann Date: Tue, 3 Dec 2019 22:25:21 +0100 Subject: [PATCH] Fix broken links in CONTRIBUTING.md documentation (#488) There were some broken links in the contributing docs, probably caused by the repo consolidation. --- CONTRIBUTING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 259ac580df9..66fc4130e46 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -105,8 +105,8 @@ The following file header is the used for .NET Core. Please use it for new files // See the LICENSE file in the project root for more information. ``` -- See [class.cpp](../../src/vm/class.cpp) for an example of the header in a C++ file. -- See [List.cs](../../src/System.Private.CoreLib/shared/System/Collections/Generic/List.cs) for an example of the header in a C# file. +- See [class.cpp](./src/coreclr/src/vm/class.cpp) for an example of the header in a C++ file. +- See [List.cs](./src/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs) for an example of the header in a C# file. ## PR - CI Process @@ -151,9 +151,9 @@ The following rules must be followed for PRs that include files from another pro - The license of the file is [permissive](https://en.wikipedia.org/wiki/Permissive_free_software_licence). - The license of the file is left in-tact. -- The contribution is correctly attributed in the [3rd party notices](../../THIRD-PARTY-NOTICES.TXT) file in the repository, as needed. +- The contribution is correctly attributed in the [3rd party notices](./THIRD-PARTY-NOTICES.TXT) file in the repository, as needed. -See [IdnMapping.cs](../../src/System.Private.CoreLib/shared/System/Globalization/IdnMapping.cs) for an example of a file copied from another project and attributed in the [CoreCLR 3rd party notices](../../THIRD-PARTY-NOTICES.TXT) file. +See [IdnMapping.cs](./src/libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.cs) for an example of a file copied from another project and attributed in the [CoreCLR 3rd party notices](./THIRD-PARTY-NOTICES.TXT) file. ### Porting Files from Other Projects