Changed corefx to libraries in System.Private.CoreLib (#532)
authorErhan Atesoglu <47518605+eanova@users.noreply.github.com>
Thu, 5 Dec 2019 22:42:00 +0000 (14:42 -0800)
committerStephen Toub <stoub@microsoft.com>
Thu, 5 Dec 2019 22:42:00 +0000 (17:42 -0500)
* Changed corefx to libraries

* Update src/libraries/System.Private.CoreLib/src/System/Runtime/Serialization/SerializationInfo.cs

Co-Authored-By: Stephen Toub <stoub@microsoft.com>
* Update src/libraries/System.Private.CoreLib/src/System/Runtime/Serialization/SerializationInfo.cs

Co-Authored-By: Stephen Toub <stoub@microsoft.com>
* Update src/libraries/System.Private.CoreLib/src/Interop/Unix/Interop.Errors.cs

Co-Authored-By: Stephen Toub <stoub@microsoft.com>
* Update src/libraries/System.Private.CoreLib/src/Internal/Win32/RegistryKey.cs

Co-Authored-By: Stephen Toub <stoub@microsoft.com>
src/libraries/System.Private.CoreLib/src/Internal/IO/File.cs
src/libraries/System.Private.CoreLib/src/Internal/Runtime/CompilerServices/Unsafe.cs
src/libraries/System.Private.CoreLib/src/Internal/Win32/RegistryKey.cs
src/libraries/System.Private.CoreLib/src/Interop/Unix/Interop.Errors.cs
src/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventCounter.cs
src/libraries/System.Private.CoreLib/src/System/Runtime/Serialization/SerializationInfo.cs

index a835be4..da3ac84 100644 (file)
@@ -11,7 +11,7 @@ namespace Internal.IO
 {
     //
     // Subsetted clone of System.IO.File for internal runtime use.
-    // Keep in sync with https://github.com/dotnet/corefx/tree/master/src/System.IO.FileSystem.
+    // Keep in sync with https://github.com/dotnet/runtime/tree/master/src/libraries/System.IO.FileSystem.
     //
     internal static partial class File
     {
index 32ceaf8..3f1a237 100644 (file)
@@ -27,7 +27,7 @@ namespace Internal.Runtime.CompilerServices
 {
     //
     // Subsetted clone of System.Runtime.CompilerServices.Unsafe for internal runtime use.
-    // Keep in sync with https://github.com/dotnet/corefx/tree/master/src/System.Runtime.CompilerServices.Unsafe.
+    // Keep in sync with https://github.com/dotnet/runtime/tree/master/src/libraries/System.Runtime.CompilerServices.Unsafe.
     //
 
     /// <summary>
index c4b3de8..e0edb83 100644 (file)
@@ -16,7 +16,7 @@ using Internal.Win32.SafeHandles;
 // A minimal version of RegistryKey that supports just what CoreLib needs.
 //
 // Internal.Win32 namespace avoids confusion with the public standalone Microsoft.Win32.Registry implementation
-// that lives in corefx.
+// that lives in https://github.com/dotnet/runtime/tree/master/src/libraries/Microsoft.Win32.Registry
 //
 namespace Internal.Win32
 {
index 943df86..49cc830 100644 (file)
@@ -105,7 +105,7 @@ internal static partial class Interop
         EHOSTNOTFOUND    = 0x20001,           // Name lookup failed
 
         // POSIX permits these to have the same value and we make them always equal so
-        // that CoreFX cannot introduce a dependency on distinguishing between them that
+        // that we do not introduce a dependency on distinguishing between them that
         // would not work on all platforms.
         EOPNOTSUPP      = ENOTSUP,            // Operation not supported on socket.
         EWOULDBLOCK     = EAGAIN,             // Operation would block.
index ae3a5d7..1a41810 100644 (file)
@@ -20,7 +20,7 @@ namespace System.Diagnostics.Tracing
     /// See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/documentation/EventCounterTutorial.md
     /// for a tutorial guide.
     ///
-    /// See https://github.com/dotnet/corefx/blob/master/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestEventCounter.cs
+    /// See https://github.com/dotnet/runtime/blob/master/src/libraries/System.Diagnostics.Tracing/tests/BasicEventSourceTest/TestEventCounter.cs
     /// which shows tests, which are also useful in seeing actual use.
     /// </summary>
     public partial class EventCounter : DiagnosticCounter
index b44c66f..4dea670 100644 (file)
@@ -402,13 +402,13 @@ namespace System.Runtime.Serialization
         /// ObjectManager when it's performing fixups.
         ///
         /// All error checking is done with asserts. Although public in coreclr,
-        /// it's not exposed in a contract and is only meant to be used by corefx.
+        /// it's not exposed in a contract and is only meant to be used by other runtime libraries.
         ///
         /// This isn't a public API, but it gets invoked dynamically by
         /// BinaryFormatter
         ///
         /// This should not be used by clients: exposing out this functionality would allow children
-        /// to overwrite their parent's values. It is public in order to give corefx access to it for
+        /// to overwrite their parent's values. It is public in order to give other runtime libraries access to it for
         /// its ObjectManager implementation, but it should not be exposed out of a contract.
         /// </summary>
         /// <param name="name"> The name of the data to be updated.</param>