diff options
author | Jan Kotas <jkotas@microsoft.com> | 2018-01-03 22:22:09 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 22:22:09 -0800 |
commit | 75ff3e46c33bd8062fb13dd5371521485d9a01e3 (patch) | |
tree | 7f99b4707ce15f4af45fa6fa01754bb6727ad8b8 /Documentation | |
parent | e432923a0cc31e1c34f94c5a2e9b75570ecf9d9a (diff) | |
download | coreclr-75ff3e46c33bd8062fb13dd5371521485d9a01e3.tar.gz coreclr-75ff3e46c33bd8062fb13dd5371521485d9a01e3.tar.bz2 coreclr-75ff3e46c33bd8062fb13dd5371521485d9a01e3.zip |
Fix link to IdnMapping.cs (#15717)
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/project-docs/contributing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/project-docs/contributing.md b/Documentation/project-docs/contributing.md index 015f9299c1..4c84f0f5ae 100644 --- a/Documentation/project-docs/contributing.md +++ b/Documentation/project-docs/contributing.md @@ -112,7 +112,7 @@ The following file header is the used for .NET Core. Please use it for new files ``` - See [class.cpp](../../src/vm/class.cpp) for an example of the header in a C++ file. -- See [Comparer.cs](../../src/mscorlib/src/System/Collections/Generic/Comparer.cs) for an example of the header in a C# file. +- See [List.cs](../../src/mscorlib/shared/System/Collections/Generic/List.cs) for an example of the header in a C# file. Contributing Ports ------------------ @@ -147,7 +147,7 @@ The following rules must be followed for PRs that include files from another pro - 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. -See [IdnMapping.cs](../../src/mscorlib/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. +See [IdnMapping.cs](../../src/mscorlib/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. Porting Files from Other Projects --------------------------------- |