Settings for spacing in XML comments with attributes

Where is the R# setting for the spacing in XML comments for C#? I've gone through all the code formatting options I could find in the R# settings, but none seem to be affecting the spacing issue described below.

Example
Before R# code formatting:
/// <summary>
///  Writes trace information...
/// </summary>
/// <param name="eventCache">A <see cref="T:System.Diagnostics.TraceEventCache" /> object containing....</param>

After R# code formatting:
/// <summary>
///   Writes trace information...
/// </summary>
/// <param name = "eventCache">A <see cref = "T:System.Diagnostics.TraceEventCache" /> object containing....</param>

Notice the spacing between 'name' and 'eventCache'. and the spacing between 'cref' and 'T:System...'


Thanks!

0

Please sign in to leave a comment.