@@ -39,7 +39,7 @@ private enum UndefinedType
3939 }
4040
4141 /// <summary>
42- /// Creates a new instance of the <see cref="AttributeColumn"/> class.
42+ /// Initializes a new instance of the <see cref="AttributeColumn"/> class.
4343 /// </summary>
4444 /// <param name="type">The type of the enumeration.</param>
4545 /// <param name="value">The value of the enumeration.</param>
@@ -173,10 +173,10 @@ internal bool HasValue(string name)
173173 // A 32-bit integer is the largest integer supported by Windows Installer.
174174
175175 /// <summary>
176- /// Converts an <see cref="AttributeColumn"/> to an <see cref="Int32 "/>.
176+ /// Converts an <see cref="AttributeColumn"/> to an <see cref="int "/>.
177177 /// </summary>
178178 /// <param name="column">The <see cref="AttributeColumn"/> to convert.</param>
179- /// <returns>The <see cref="Int32 "/> value of the <see cref="AttributeColumn"/>.</returns>
179+ /// <returns>The <see cref="int "/> value of the <see cref="AttributeColumn"/>.</returns>
180180 public static implicit operator int ( AttributeColumn column )
181181 {
182182 if ( null != column )
@@ -188,20 +188,20 @@ public static implicit operator int(AttributeColumn column)
188188 }
189189
190190 /// <summary>
191- /// Converts an <see cref="Int32 "/> to an <see cref="AttributeColumn"/>.
191+ /// Converts an <see cref="int "/> to an <see cref="AttributeColumn"/>.
192192 /// </summary>
193- /// <param name="value">The <see cref="Int32 "/> value to convert.</param>
194- /// <returns>The <see cref="AttributeColumn"/> with the value of the <see cref="Int32 "/>.</returns>
193+ /// <param name="value">The <see cref="int "/> value to convert.</param>
194+ /// <returns>The <see cref="AttributeColumn"/> with the value of the <see cref="int "/>.</returns>
195195 public static implicit operator AttributeColumn ( int value )
196196 {
197197 return new AttributeColumn ( null , value ) ;
198198 }
199199
200200 /// <summary>
201- /// Converts an <see cref="AttributeColumn"/> to a nullable <see cref="Int32 "/>.
201+ /// Converts an <see cref="AttributeColumn"/> to a nullable <see cref="int "/>.
202202 /// </summary>
203203 /// <param name="column">The <see cref="AttributeColumn"/> to convert.</param>
204- /// <returns>The nullable <see cref="Int32 "/> value of the <see cref="AttributeColumn"/>.</returns>
204+ /// <returns>The nullable <see cref="int "/> value of the <see cref="AttributeColumn"/>.</returns>
205205 public static implicit operator int ? ( AttributeColumn column )
206206 {
207207 if ( null != column )
@@ -213,10 +213,10 @@ public static implicit operator AttributeColumn(int value)
213213 }
214214
215215 /// <summary>
216- /// Converts a nullable <see cref="Int32 "/> to an <see cref="AttributeColumn"/>.
216+ /// Converts a nullable <see cref="int "/> to an <see cref="AttributeColumn"/>.
217217 /// </summary>
218- /// <param name="value">The nullable <see cref="Int32 "/> value to convert.</param>
219- /// <returns>The <see cref="AttributeColumn"/> with the value of the nullable <see cref="Int32 "/>.</returns>
218+ /// <param name="value">The nullable <see cref="int "/> value to convert.</param>
219+ /// <returns>The <see cref="AttributeColumn"/> with the value of the nullable <see cref="int "/>.</returns>
220220 public static implicit operator AttributeColumn ( int ? value )
221221 {
222222 return new AttributeColumn ( null , value ) ;
0 commit comments