Skip to content

Commit f61cab4

Browse files
rjpereshazzik
authored andcommitted
NH-3759
Replaced misspelled word "seperator" for "separator".
1 parent 1164367 commit f61cab4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/NHibernate/Id/UUIDHexGenerator.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ namespace NHibernate.Id
1717
/// <code>
1818
/// &lt;generator class="uuid.hex"&gt;
1919
/// &lt;param name="format"&gt;format_string&lt;/param&gt;
20-
/// &lt;param name="seperator"&gt;seperator_string&lt;/param&gt;
20+
/// &lt;param name="separator"&gt;separator_string&lt;/param&gt;
2121
/// &lt;/generator&gt;
2222
/// </code>
2323
/// </p>
2424
/// <p>
25-
/// The <c>format</c> and <c>seperator</c> parameters are optional.
25+
/// The <c>format</c> and <c>separator</c> parameters are optional.
2626
/// </p>
2727
/// <p>
2828
/// The identifier string will consist of only hex digits. Optionally, the identifier string
29-
/// may be generated with enclosing characters and seperators between each component
30-
/// of the UUID. If there are seperators then the string length will be 36. If a format
29+
/// may be generated with enclosing characters and separators between each component
30+
/// of the UUID. If there are separators then the string length will be 36. If a format
3131
/// that has enclosing brackets is used, then the string length will be 38.
3232
/// </p>
3333
/// <p>
@@ -40,9 +40,9 @@ namespace NHibernate.Id
4040
/// If no <c>format</c> is specified the default is "N".
4141
/// </p>
4242
/// <p>
43-
/// <c>seperator</c> is the char that will replace the "-" if specified. If no value is
44-
/// configured then the default seperator for the format will be used. If the format "D", "B", or
45-
/// "P" is specified, then the seperator will replace the "-". If the format is "N" then this
43+
/// <c>separator</c> is the char that will replace the "-" if specified. If no value is
44+
/// configured then the default separator for the format will be used. If the format "D", "B", or
45+
/// "P" is specified, then the separator will replace the "-". If the format is "N" then this
4646
/// parameter will be ignored.
4747
/// </p>
4848
/// <p>
@@ -83,7 +83,7 @@ public virtual object Generate(ISessionImplementor session, object obj)
8383

8484
/// <summary>
8585
/// Configures the UUIDHexGenerator by reading the value of <c>format</c> and
86-
/// <c>seperator</c> from the <c>parms</c> parameter.
86+
/// <c>separator</c> from the <c>parms</c> parameter.
8787
/// </summary>
8888
/// <param name="type">The <see cref="IType"/> the identifier should be.</param>
8989
/// <param name="parms">An <see cref="IDictionary"/> of Param values that are keyed by parameter name.</param>
@@ -94,7 +94,7 @@ public virtual void Configure(IType type, IDictionary<string, string> parms, Dia
9494

9595
if (format != FormatWithDigitsOnly)
9696
{
97-
sep = PropertiesHelper.GetString("seperator", parms, null);
97+
sep = PropertiesHelper.GetString("separator", parms, null);
9898
}
9999
}
100100

0 commit comments

Comments
 (0)