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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/mscorlib/system/collections/stack.cs')
-rw-r--r--mcs/class/referencesource/mscorlib/system/collections/stack.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mcs/class/referencesource/mscorlib/system/collections/stack.cs b/mcs/class/referencesource/mscorlib/system/collections/stack.cs
index de575ffbdae..158089a6216 100644
--- a/mcs/class/referencesource/mscorlib/system/collections/stack.cs
+++ b/mcs/class/referencesource/mscorlib/system/collections/stack.cs
@@ -7,7 +7,7 @@
**
** Class: Stack
**
-** <OWNER>Microsoft</OWNER>
+** <OWNER>[....]</OWNER>
**
** Purpose: An array implementation of a stack.
**
@@ -30,7 +30,7 @@ namespace System.Collections {
private Object[] _array; // Storage for stack elements
[ContractPublicPropertyName("Count")]
private int _size; // Number of items in the stack.
- private int _version; // Used to keep enumerator in sync w/ collection.
+ private int _version; // Used to keep enumerator in [....] w/ collection.
[NonSerialized]
private Object _syncRoot;