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/Tags/UrlTag.cs')
-rw-r--r--src/Text/Def/TextLogic/Tags/UrlTag.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Def/TextLogic/Tags/UrlTag.cs b/src/Text/Def/TextLogic/Tags/UrlTag.cs
index 83e086e..b8ed521 100644
--- a/src/Text/Def/TextLogic/Tags/UrlTag.cs
+++ b/src/Text/Def/TextLogic/Tags/UrlTag.cs
@@ -20,7 +20,7 @@ namespace Microsoft.VisualStudio.Text.Tagging
public UrlTag(Uri url)
{
if (url == null)
- throw new ArgumentNullException("url");
+ throw new ArgumentNullException(nameof(url));
Url = url;
}