Commit adff3d74 authored by zBrianW's avatar zBrianW Committed by Marc Gravell

Minor spelling fixes. (#1005)

* Minor spelling fixes.

* Small typo in Literals.cs .
parent a1a6a879
......@@ -17,7 +17,7 @@ internal static class Literals
/// Obtain a lazily-cached pre-encoded and boxed representation of a string
/// </summary>
/// <param name="value">The value to get a literal representation for.</param>
/// <remarks>This shoul donly be used for fixed values, not user data (the cache is never reclaimed, so it will be a memory leak)</remarks>
/// <remarks>This should only be used for fixed values, not user data (the cache is never reclaimed, so it will be a memory leak)</remarks>
public static object Literal(this string value)
{
if (value == null) return _null;
......
......@@ -20,7 +20,7 @@ namespace StackExchange.Redis
public sealed class LuaScript
{
// Since the mapping of "script text" -> LuaScript doesn't depend on any particular details of
// the redis connection itself, this cache is global.
// the redis connection itself, this cache is global.
private static readonly ConcurrentDictionary<string, WeakReference> Cache = new ConcurrentDictionary<string, WeakReference>();
/// <summary>
......@@ -139,7 +139,7 @@ internal void ExtractParameters(object ps, RedisKey? keyPrefix, out RedisKey[] k
/// <summary>
/// Evaluates this LuaScript against the given database, extracting parameters from the passed in object if any.
/// </summary>
/// <param name="db">The redis databse to evaluate against.</param>
/// <param name="db">The redis database to evaluate against.</param>
/// <param name="ps">The parameter object to use.</param>
/// <param name="withKeyPrefix">The key prefix to use, if any.</param>
/// <param name="flags">The command flags to use.</param>
......@@ -152,7 +152,7 @@ public RedisResult Evaluate(IDatabase db, object ps = null, RedisKey? withKeyPre
/// <summary>
/// Evaluates this LuaScript against the given database, extracting parameters from the passed in object if any.
/// </summary>
/// <param name="db">The redis databse to evaluate against.</param>
/// <param name="db">The redis database to evaluate against.</param>
/// <param name="ps">The parameter object to use.</param>
/// <param name="withKeyPrefix">The key prefix to use, if any.</param>
/// <param name="flags">The command flags to use.</param>
......@@ -257,7 +257,7 @@ internal LoadedLuaScript(LuaScript original, byte[] hash)
/// been loaded into the passed Redis instance it will fail.
/// </para>
/// </summary>
/// <param name="db">The redis databse to evaluate against.</param>
/// <param name="db">The redis database to evaluate against.</param>
/// <param name="ps">The parameter object to use.</param>
/// <param name="withKeyPrefix">The key prefix to use, if any.</param>
/// <param name="flags">The command flags to use.</param>
......@@ -274,7 +274,7 @@ public RedisResult Evaluate(IDatabase db, object ps = null, RedisKey? withKeyPre
/// been loaded into the passed Redis instance it will fail.
/// </para>
/// </summary>
/// <param name="db">The redis databse to evaluate against.</param>
/// <param name="db">The redis database to evaluate against.</param>
/// <param name="ps">The parameter object to use.</param>
/// <param name="withKeyPrefix">The key prefix to use, if any.</param>
/// <param name="flags">The command flags to use.</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