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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Chavez <bchavez@bitarmory.com>2017-08-30 01:40:48 +0300
committerDan Moseley <danmose@microsoft.com>2017-08-30 01:40:48 +0300
commit723c7feed515abbeece068e05fdf2f918a74ca85 (patch)
treee8555632bdcb626e470a3b5b399cd4f37edd1435 /src/System.ComponentModel.TypeConverter
parent244efc5332bc55c96873c242ed520e85a04e0e03 (diff)
XML doc spelling corrections - Q through Z. (#23655)
Diffstat (limited to 'src/System.ComponentModel.TypeConverter')
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DelegatingTypeDescriptionProvider.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/DesignerTransaction.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs6
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/INameCreationService.cs4
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/MemberRelationshipService.cs4
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DesignTimeVisibleAttribute.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ICancelAddNew.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/MaskedTextProvider.cs20
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ReflectTypeDescriptionProvider.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/RunInstallerAttribute.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ToolboxItemFilterAttribute.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptionProvider.cs2
-rw-r--r--src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptor.cs4
13 files changed, 27 insertions, 27 deletions
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DelegatingTypeDescriptionProvider.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DelegatingTypeDescriptionProvider.cs
index e10692bc73..0f96381696 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DelegatingTypeDescriptionProvider.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DelegatingTypeDescriptionProvider.cs
@@ -60,7 +60,7 @@ namespace System.ComponentModel
/// The name of the specified component, or null if the component has no name.
/// In many cases this will return the same value as GetComponentName. If the
/// component resides in a nested container or has other nested semantics, it may
- /// return a different fully qualfied name.
+ /// return a different fully qualified name.
///
/// If not overridden, the default implementation of this method will call
/// GetTypeDescriptor.GetComponentName.
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/DesignerTransaction.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/DesignerTransaction.cs
index 22b389aa7c..0b8659b104 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/DesignerTransaction.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/DesignerTransaction.cs
@@ -9,7 +9,7 @@ namespace System.ComponentModel.Design
{
/// <summary>
/// Identifies a transaction within a designer. Transactions are
- /// used to wrap serveral changes into one unit of work, which
+ /// used to wrap several changes into one unit of work, which
/// helps performance.
/// </summary>
public abstract class DesignerTransaction : IDisposable
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs
index 8c0e799631..27ccfc39bb 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/IDesignerSerializationProvider.cs
@@ -15,15 +15,15 @@ namespace System.ComponentModel.Design.Serialization
{
/// <summary>
/// This will be called by the serialization manager when it
- /// is trying to locate a serialzer for an object type.
+ /// is trying to locate a serializer for an object type.
/// If this serialization provider can provide a serializer
/// that is of the correct type, it should return it.
/// Otherwise, it should return null.
///
/// In order to break order dependencies between multiple
/// serialization providers the serialization manager will
- /// loop through all serilaization provideres until the
- /// serilaizer returned reaches steady state. Because
+ /// loop through all serialization providers until the
+ /// serializer returned reaches steady state. Because
/// of this you should always check currentSerializer
/// before returning a new serializer. If currentSerializer
/// is an instance of your serializer, then you should
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/INameCreationService.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/INameCreationService.cs
index 1e1ba2fc07..eef0a1bece 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/INameCreationService.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/INameCreationService.cs
@@ -28,7 +28,7 @@ namespace System.ComponentModel.Design.Serialization
/// <summary>
/// Determines if the given name is valid. A name
/// creation service may have rules defining a valid
- /// name, and this method allows the sevice to enforce
+ /// name, and this method allows the service to enforce
/// those rules.
/// </summary>
bool IsValidName(string name);
@@ -36,7 +36,7 @@ namespace System.ComponentModel.Design.Serialization
/// <summary>
/// Determines if the given name is valid. A name
/// creation service may have rules defining a valid
- /// name, and this method allows the sevice to enforce
+ /// name, and this method allows the service to enforce
/// those rules. It is similar to IsValidName, except
/// that this method will throw an exception if the
/// name is invalid. This allows implementors to provide
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/MemberRelationshipService.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/MemberRelationshipService.cs
index 41e9f920ef..6ed8701261 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/MemberRelationshipService.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/Design/Serialization/MemberRelationshipService.cs
@@ -20,7 +20,7 @@ namespace System.ComponentModel.Design.Serialization
/// between these two objects is lost. Serialization schemes that
/// wish to maintain this relationship may install a MemberRelationshipService
/// into the serialization manager. When an object is deserialized
- /// this serivce will be notified of these relationships. It is up to the service
+ /// this service will be notified of these relationships. It is up to the service
/// to act on these notifications if it wishes. During serialization, the
/// service is also consulted. If a relationship exists the same
/// relationship is maintained by the serializer.
@@ -126,7 +126,7 @@ namespace System.ComponentModel.Design.Serialization
}
/// <summary>
- /// Returns true if the provided relatinoship is supported.
+ /// Returns true if the provided relationship is supported.
/// </summary>
public abstract bool SupportsRelationship(MemberRelationship source, MemberRelationship relationship);
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DesignTimeVisibleAttribute.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DesignTimeVisibleAttribute.cs
index ae51f0f051..cf9f745231 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DesignTimeVisibleAttribute.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/DesignTimeVisibleAttribute.cs
@@ -51,7 +51,7 @@ namespace System.ComponentModel
public static readonly DesignTimeVisibleAttribute No = new DesignTimeVisibleAttribute(false);
/// <summary>
- /// The default visiblity. (equal to Yes.)
+ /// The default visibility. (equal to Yes.)
/// </summary>
public static readonly DesignTimeVisibleAttribute Default = Yes;
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ICancelAddNew.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ICancelAddNew.cs
index da2dc9b878..2e29ff1338 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ICancelAddNew.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ICancelAddNew.cs
@@ -11,7 +11,7 @@ namespace System.ComponentModel
/// to be either cancelled or committed.
///
/// Note: In some scenarios, specifically Windows Forms complex data binding,
- /// the list may recieve CancelNew or EndNew calls for items other than the
+ /// the list may receive CancelNew or EndNew calls for items other than the
/// new item. These calls should be ignored, ie. the new item should only be
/// cancelled or committed when that item's index is specified.
/// </summary>
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/MaskedTextProvider.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/MaskedTextProvider.cs
index 98447e5ddd..5f10857422 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/MaskedTextProvider.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/MaskedTextProvider.cs
@@ -455,12 +455,12 @@ namespace System.ComponentModel
public bool AllowPromptAsInput => _flagState[s_ALLOW_PROMPT_AS_INPUT];
/// <summary>
- /// Retreives the number of editable characters that have been set.
+ /// Retrieves the number of editable characters that have been set.
/// </summary>
public int AssignedEditPositionCount { get; private set; }
/// <summary>
- /// Retreives the number of editable characters that have been set.
+ /// Retrieves the number of editable characters that have been set.
/// </summary>
public int AvailableEditPositionCount => EditPositionCount - AssignedEditPositionCount;
@@ -468,7 +468,7 @@ namespace System.ComponentModel
/// Creates a 'clean' (no text assigned) MaskedTextProvider instance with the same property values as the
/// current instance.
/// Derived classes can override this method and call base.Clone to get proper cloning semantics but must
- /// implement the full-paramter constructor (passing parameters to the base constructor as well).
+ /// implement the full-parameter constructor (passing parameters to the base constructor as well).
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2113:SecureLateBindingMethods")]
public object Clone()
@@ -1436,7 +1436,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified position is available for assignment. Returns false if it is assigned
+ /// Checks whether the specified position is available for assignment. Returns false if it is assigned
/// or it is not editable, true otherwise.
/// </summary>
public bool IsAvailablePosition(int position)
@@ -1452,7 +1452,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified position in the test string is editable.
+ /// Checks whether the specified position in the test string is editable.
/// </summary>
public bool IsEditPosition(int position)
{
@@ -1472,7 +1472,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the character in the specified position is a literal and the same as the specified character.
+ /// Checks whether the character in the specified position is a literal and the same as the specified character.
/// </summary>
private static bool IsLiteralPosition(CharDescriptor charDescriptor)
{
@@ -1480,7 +1480,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified character is valid as part of a mask or an input string.
+ /// Checks whether the specified character is valid as part of a mask or an input string.
/// </summary>
private static bool IsPrintableChar(char c)
{
@@ -1488,7 +1488,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified character is a valid input char.
+ /// Checks whether the specified character is a valid input char.
/// </summary>
public static bool IsValidInputChar(char c)
{
@@ -1496,7 +1496,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified character is a valid input char.
+ /// Checks whether the specified character is a valid input char.
/// </summary>
public static bool IsValidMaskChar(char c)
{
@@ -1504,7 +1504,7 @@ namespace System.ComponentModel
}
/// <summary>
- /// Checks wheteher the specified character is a valid password char.
+ /// Checks whether the specified character is a valid password char.
/// </summary>
public static bool IsValidPasswordChar(char c)
{
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ReflectTypeDescriptionProvider.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ReflectTypeDescriptionProvider.cs
index 8838d2fb36..34b020fb9e 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ReflectTypeDescriptionProvider.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ReflectTypeDescriptionProvider.cs
@@ -726,7 +726,7 @@ namespace System.ComponentModel
/// The name of the specified component, or null if the component has no name.
/// In many cases this will return the same value as GetComponentName. If the
/// component resides in a nested container or has other nested semantics, it may
- /// return a different fully qualfied name.
+ /// return a different fully qualified name.
///
/// If not overridden, the default implementation of this method will call
/// GetComponentName.
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/RunInstallerAttribute.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/RunInstallerAttribute.cs
index 7d6e3def37..86a0e32afe 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/RunInstallerAttribute.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/RunInstallerAttribute.cs
@@ -59,7 +59,7 @@ namespace System.ComponentModel
/// <summary>
/// <para>
- /// Specifies the default visiblity, which is <see cref='System.ComponentModel.RunInstallerAttribute.No'/>. This <see langword='static '/>field is
+ /// Specifies the default visibility, which is <see cref='System.ComponentModel.RunInstallerAttribute.No'/>. This <see langword='static '/>field is
/// read-only.
/// </para>
/// </summary>
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ToolboxItemFilterAttribute.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ToolboxItemFilterAttribute.cs
index ed0fbc4c2d..93d79a7619 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ToolboxItemFilterAttribute.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/ToolboxItemFilterAttribute.cs
@@ -26,7 +26,7 @@ namespace System.ComponentModel
/// These two filters specify that ReportElement toolbox items will only be
/// enabled when a ReportDesigner is visible. By specifying a filter type of
/// Require on the report designer class, this will disable any toolbox items
- /// that are not report elements. If the report designer specifed a filter type
+ /// that are not report elements. If the report designer specified a filter type
/// of "Allow" instead of "Require", other components would be enabled when the
/// report designer was active. ReportElements would still be disabled when
/// other designers were active, however, because ReportElement requires designers
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptionProvider.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptionProvider.cs
index c7490312f0..2abceb8bb7 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptionProvider.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptionProvider.cs
@@ -125,7 +125,7 @@ namespace System.ComponentModel
/// The name of the specified component, or null if the component has no name.
/// In many cases this will return the same value as GetComponentName. If the
/// component resides in a nested container or has other nested semantics, it may
- /// return a different fully qualfied name.
+ /// return a different fully qualified name.
///
/// If not overridden, the default implementation of this method will call
/// GetTypeDescriptor.GetComponentName.
diff --git a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptor.cs b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptor.cs
index fb8bc5f09d..99fac6f7ea 100644
--- a/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptor.cs
+++ b/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/TypeDescriptor.cs
@@ -1195,7 +1195,7 @@ namespace System.ComponentModel
/// The name of the specified component, or null if the component has no name.
/// In many cases this will return the same value as GetComponentName. If the
/// component resides in a nested container or has other nested semantics, it may
- /// return a different fully qualfied name.
+ /// return a different fully qualified name.
/// </summary>
public static string GetFullComponentName(object component)
{
@@ -3201,7 +3201,7 @@ namespace System.ComponentModel
/// The name of the specified component, or null if the component has no name.
/// In many cases this will return the same value as GetComponentName. If the
/// component resides in a nested container or has other nested semantics, it may
- /// return a different fully qualfied name.
+ /// return a different fully qualified name.
///
/// If not overridden, the default implementation of this method will call
/// GetTypeDescriptor.GetComponentName.