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/TextUI/Editor/MarginContainerAttribute.cs')
-rw-r--r--src/Text/Def/TextUI/Editor/MarginContainerAttribute.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Def/TextUI/Editor/MarginContainerAttribute.cs b/src/Text/Def/TextUI/Editor/MarginContainerAttribute.cs
index 815b804..aa89687 100644
--- a/src/Text/Def/TextUI/Editor/MarginContainerAttribute.cs
+++ b/src/Text/Def/TextUI/Editor/MarginContainerAttribute.cs
@@ -26,7 +26,7 @@ namespace Microsoft.VisualStudio.Text.Editor
public MarginContainerAttribute(string marginContainer)
{
if (marginContainer == null)
- throw new ArgumentNullException("marginContainer");
+ throw new ArgumentNullException(nameof(marginContainer));
if (marginContainer.Length == 0)
throw new ArgumentException("marginContainer is an empty string.");