@@ -17,17 +17,17 @@ namespace NHibernate.Id
17
17
/// <code>
18
18
/// <generator class="uuid.hex">
19
19
/// <param name="format">format_string</param>
20
- /// <param name="seperator ">seperator_string </param>
20
+ /// <param name="separator ">separator_string </param>
21
21
/// </generator>
22
22
/// </code>
23
23
/// </p>
24
24
/// <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.
26
26
/// </p>
27
27
/// <p>
28
28
/// 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
31
31
/// that has enclosing brackets is used, then the string length will be 38.
32
32
/// </p>
33
33
/// <p>
@@ -40,9 +40,9 @@ namespace NHibernate.Id
40
40
/// If no <c>format</c> is specified the default is "N".
41
41
/// </p>
42
42
/// <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
46
46
/// parameter will be ignored.
47
47
/// </p>
48
48
/// <p>
@@ -83,7 +83,7 @@ public virtual object Generate(ISessionImplementor session, object obj)
83
83
84
84
/// <summary>
85
85
/// 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.
87
87
/// </summary>
88
88
/// <param name="type">The <see cref="IType"/> the identifier should be.</param>
89
89
/// <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
94
94
95
95
if ( format != FormatWithDigitsOnly )
96
96
{
97
- sep = PropertiesHelper . GetString ( "seperator " , parms , null ) ;
97
+ sep = PropertiesHelper . GetString ( "separator " , parms , null ) ;
98
98
}
99
99
}
100
100
0 commit comments