Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgorBo <egorbo@gmail.com>2018-05-31 17:49:16 +0300
committerMarek Safar <marek.safar@gmail.com>2018-05-31 17:49:55 +0300
commitd52ca23291ea6c40ec7d3f30160c261350256f70 (patch)
treed980ebeda32ca161a77acd1295bc4b9dac8d2a1b
parentb8fbb2385d53b343046f1c906bcb313efac01e85 (diff)
fix typo
-rw-r--r--src/Common/src/CoreLib/System/Guid.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/src/CoreLib/System/Guid.cs b/src/Common/src/CoreLib/System/Guid.cs
index ddbb2a0532..185b9bc56d 100644
--- a/src/Common/src/CoreLib/System/Guid.cs
+++ b/src/Common/src/CoreLib/System/Guid.cs
@@ -1304,7 +1304,7 @@ namespace System
int bytesWritten;
#if MONO
- // Span.Portable doesn't have Span(ref T[], int) construct
+ // Span.Portable doesn't have Span(ref T[], int) constructor
// Remove it once Mono switches to Span.Fast
bool result = TryFormat(new Span<char>(guidString.ToCharArray()), out bytesWritten, format);
#else