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/Def/TextLogic/Tagging/TagSpan.cs')
-rw-r--r--src/Text/Def/TextLogic/Tagging/TagSpan.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Def/TextLogic/Tagging/TagSpan.cs b/src/Text/Def/TextLogic/Tagging/TagSpan.cs
index cd105aa..5636a7c 100644
--- a/src/Text/Def/TextLogic/Tagging/TagSpan.cs
+++ b/src/Text/Def/TextLogic/Tagging/TagSpan.cs
@@ -55,7 +55,7 @@ namespace Microsoft.VisualStudio.Text.Tagging
public TagSpan(SnapshotSpan span, T tag)
{
if (tag == null)
- throw new ArgumentNullException("tag");
+ throw new ArgumentNullException(nameof(tag));
Span = span;
Tag = tag;