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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs')
-rw-r--r--src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs b/src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs
index f7afc1c..01e6895 100644
--- a/src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs
+++ b/src/Text/Impl/DifferenceAlgorithm/TokenizedStringList.cs
@@ -42,7 +42,7 @@ namespace Microsoft.VisualStudio.Text.Differencing.Implementation
protected TokenizedStringList(string original)
{
if (original == null)
- throw new ArgumentNullException("original");
+ throw new ArgumentNullException(nameof(original));
this.original = original;
}