Commit 7aec5c0d authored by ofirgeller's avatar ofirgeller

Spell Checking

Just correcting some typos.
One thing that is a matter of opinion. I think recordset and  featureset should not be used as a word so I changed it to => record set and feature set.
parent 8df328f8
......@@ -33,7 +33,7 @@ internal sealed class AssemblyNeutralAttribute : Attribute { }
public enum CommandFlags
{
/// <summary>
/// No additonal flags
/// No additional flags
/// </summary>
None = 0,
/// <summary>
......@@ -263,7 +263,7 @@ public interface IParameterLookup : IDynamicParameters
}
/// <summary>
/// Extends IDynamicParameters with facitilies for executing callbacks after commands have completed
/// Extends IDynamicParameters with facilities for executing callbacks after commands have completed
/// </summary>
public partial interface IParameterCallbacks : IDynamicParameters
{
......@@ -377,7 +377,7 @@ object ITypeHandler.Parse(Type destinationType, object value)
}
/// <summary>
/// Implement this interface to change default mapping of reader columns to type memebers
/// Implement this interface to change default mapping of reader columns to type members
/// </summary>
public interface ITypeMap
{
......@@ -394,7 +394,7 @@ public interface ITypeMap
///
/// Parameters will be default values, nulls for reference types and zero'd for value types.
///
/// Use this class to force object creation away from parameterless constructors you dn't control.
/// Use this class to force object creation away from parameterless constructors you don't control.
/// </summary>
ConstructorInfo FindExplicitConstructor();
......@@ -735,7 +735,7 @@ public static void ResetTypeHandlers()
AddTypeHandlerImpl(typeof(DataTable), new DataTableHandler(), true);
}
/// <summary>
/// Configire the specified type to be mapped to a given db-type
/// Configure the specified type to be mapped to a given db-type
/// </summary>
public static void AddTypeMap(Type type, DbType dbType)
{
......@@ -751,7 +751,7 @@ public static void AddTypeMap(Type type, DbType dbType)
}
/// <summary>
/// Configire the specified type to be processed by a custom handler
/// Configure the specified type to be processed by a custom handler
/// </summary>
public static void AddTypeHandler(Type type, ITypeHandler handler)
{
......@@ -759,7 +759,7 @@ public static void AddTypeHandler(Type type, ITypeHandler handler)
}
/// <summary>
/// Configire the specified type to be processed by a custom handler
/// Configure the specified type to be processed by a custom handler
/// </summary>
public static void AddTypeHandlerImpl(Type type, ITypeHandler handler, bool clone)
{
......@@ -808,7 +808,7 @@ public static void AddTypeHandlerImpl(Type type, ITypeHandler handler, bool clon
}
/// <summary>
/// Configire the specified type to be processed by a custom handler
/// Configure the specified type to be processed by a custom handler
/// </summary>
public static void AddTypeHandler<T>(TypeHandler<T> handler)
{
......@@ -913,7 +913,7 @@ internal static DbType LookupDbType(Type type, string name, bool demand, out ITy
}
/// <summary>
/// Identity of a cached query in Dapper, used for extensability
/// Identity of a cached query in Dapper, used for extensibility
/// </summary>
public partial class Identity : IEquatable<Identity>
{
......@@ -1600,8 +1600,8 @@ private static IEnumerable<T> QueryImpl<T>(this IDbConnection cnn, CommandDefini
/// <summary>
/// Maps a query to objects
/// </summary>
/// <typeparam name="TFirst">The first type in the recordset</typeparam>
/// <typeparam name="TSecond">The second type in the recordset</typeparam>
/// <typeparam name="TFirst">The first type in the record set</typeparam>
/// <typeparam name="TSecond">The second type in the record set</typeparam>
/// <typeparam name="TReturn">The return type</typeparam>
/// <param name="cnn"></param>
/// <param name="sql"></param>
......@@ -1768,7 +1768,7 @@ private static IEnumerable<T> QueryImpl<T>(this IDbConnection cnn, CommandDefini
/// <typeparam name="TReturn">The return type</typeparam>
/// <param name="cnn"></param>
/// <param name="sql"></param>
/// <param name="types">array of types in the recordset</param>
/// <param name="types">array of types in the record set</param>
/// <param name="map"></param>
/// <param name="param"></param>
/// <param name="transaction"></param>
......@@ -3246,7 +3246,7 @@ internal static IList<LiteralToken> GetLiteralTokens(string sql)
case TypeCode.Single:
case TypeCode.Double:
case TypeCode.Decimal:
// neeed to stloc, ldloca, call
// need to stloc, ldloca, call
// re-use existing locals (both the last known, and via a dictionary)
var convert = GetToString(typeCode);
if (local == null || local.LocalType != propType)
......@@ -4080,7 +4080,7 @@ private static void EmitInt32(ILGenerator il, int value)
/// <summary>
/// How should connection strings be compared for equivalence? Defaults to StringComparer.Ordinal.
/// Providing a custom implementation can be useful for allowing multi-tenancy databases with identical
/// schema to share startegies. Note that usual equivalence rules apply: any equivalent connection strings
/// schema to share strategies. Note that usual equivalence rules apply: any equivalent connection strings
/// <b>MUST</b> yield the same hash-code.
/// </summary>
public static IEqualityComparer<string> ConnectionStringComparer
......@@ -4200,7 +4200,7 @@ private IEnumerable<T> ReadImpl<T>(Type type, bool buffered)
#if CSHARP30
/// <summary>
/// Read multiple objects from a single recordset on the grid
/// Read multiple objects from a single record set on the grid
/// </summary>
public IEnumerable<TReturn> Read<TFirst, TSecond, TReturn>(Func<TFirst, TSecond, TReturn> func, string splitOn)
{
......@@ -4208,7 +4208,7 @@ private IEnumerable<T> ReadImpl<T>(Type type, bool buffered)
}
#endif
/// <summary>
/// Read multiple objects from a single recordset on the grid
/// Read multiple objects from a single record set on the grid
/// </summary>
#if CSHARP30
public IEnumerable<TReturn> Read<TFirst, TSecond, TReturn>(Func<TFirst, TSecond, TReturn> func, string splitOn, bool buffered)
......@@ -4222,7 +4222,7 @@ private IEnumerable<T> ReadImpl<T>(Type type, bool buffered)
#if CSHARP30
/// <summary>
/// Read multiple objects from a single recordset on the grid
/// Read multiple objects from a single record set on the grid
/// </summary>
public IEnumerable<TReturn> Read<TFirst, TSecond, TThird, TReturn>(Func<TFirst, TSecond, TThird, TReturn> func, string splitOn)
{
......@@ -4230,7 +4230,7 @@ private IEnumerable<T> ReadImpl<T>(Type type, bool buffered)
}
#endif
/// <summary>
/// Read multiple objects from a single recordset on the grid
/// Read multiple objects from a single record set on the grid
/// </summary>
#if CSHARP30
public IEnumerable<TReturn> Read<TFirst, TSecond, TThird, TReturn>(Func<TFirst, TSecond, TThird, TReturn> func, string splitOn, bool buffered)
......@@ -5056,7 +5056,7 @@ private static readonly FeatureSupport
postgres = new FeatureSupport(true);
/// <summary>
/// Gets the featureset based on the passed connection
/// Gets the feature set based on the passed connection
/// </summary>
public static FeatureSupport Get(IDbConnection connection)
{
......@@ -5075,7 +5075,7 @@ private FeatureSupport(bool arrays)
}
/// <summary>
/// Represents simple memeber map for one of target parameter or property or field to source DataReader column
/// Represents simple member map for one of target parameter or property or field to source DataReader column
/// </summary>
sealed partial class SimpleMemberMap : SqlMapper.IMemberMap
{
......@@ -5392,7 +5392,7 @@ public ConstructorInfo FindExplicitConstructor()
}
/// <summary>
/// Not impelmeneted as far as default constructor used for all cases
/// Not implemented as far as default constructor used for all cases
/// </summary>
/// <param name="constructor"></param>
/// <param name="columnName"></param>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment