@@ -6,7 +6,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
66 /// <summary>
77 /// A collection of methods for creating generic brushes.
88 /// </summary>
9- /// <returns>A New <see cref="PatternBrush"/></returns>
9+ /// <returns>A new <see cref="PatternBrush"/></returns>
1010 public static class Brushes
1111 {
1212 /// <summary>
@@ -92,14 +92,14 @@ public static class Brushes
9292 /// Create as brush that will paint a solid color
9393 /// </summary>
9494 /// <param name="color">The color.</param>
95- /// <returns>A New <see cref="PatternBrush"/></returns>
95+ /// <returns>A new <see cref="PatternBrush"/></returns>
9696 public static SolidBrush Solid ( Color color ) => new ( color ) ;
9797
9898 /// <summary>
9999 /// Create as brush that will paint a Percent10 Hatch Pattern with the specified colors
100100 /// </summary>
101101 /// <param name="foreColor">Color of the foreground.</param>
102- /// <returns>A New <see cref="PatternBrush"/></returns>
102+ /// <returns>A new <see cref="PatternBrush"/></returns>
103103 public static PatternBrush Percent10 ( Color foreColor )
104104 => new ( foreColor , Color . Transparent , Percent10Pattern ) ;
105105
@@ -108,7 +108,7 @@ public static PatternBrush Percent10(Color foreColor)
108108 /// </summary>
109109 /// <param name="foreColor">Color of the foreground.</param>
110110 /// <param name="backColor">Color of the background.</param>
111- /// <returns>A New <see cref="PatternBrush"/></returns>
111+ /// <returns>A new <see cref="PatternBrush"/></returns>
112112 public static PatternBrush Percent10 ( Color foreColor , Color backColor )
113113 => new ( foreColor , backColor , Percent10Pattern ) ;
114114
@@ -117,7 +117,7 @@ public static PatternBrush Percent10(Color foreColor, Color backColor)
117117 /// transparent background.
118118 /// </summary>
119119 /// <param name="foreColor">Color of the foreground.</param>
120- /// <returns>A New <see cref="PatternBrush"/></returns>
120+ /// <returns>A new <see cref="PatternBrush"/></returns>
121121 public static PatternBrush Percent20 ( Color foreColor )
122122 => new ( foreColor , Color . Transparent , Percent20Pattern ) ;
123123
@@ -126,7 +126,7 @@ public static PatternBrush Percent20(Color foreColor)
126126 /// </summary>
127127 /// <param name="foreColor">Color of the foreground.</param>
128128 /// <param name="backColor">Color of the background.</param>
129- /// <returns>A New <see cref="PatternBrush"/></returns>
129+ /// <returns>A new <see cref="PatternBrush"/></returns>
130130 public static PatternBrush Percent20 ( Color foreColor , Color backColor )
131131 => new ( foreColor , backColor , Percent20Pattern ) ;
132132
@@ -135,7 +135,7 @@ public static PatternBrush Percent20(Color foreColor, Color backColor)
135135 /// transparent background.
136136 /// </summary>
137137 /// <param name="foreColor">Color of the foreground.</param>
138- /// <returns>A New <see cref="PatternBrush"/></returns>
138+ /// <returns>A new <see cref="PatternBrush"/></returns>
139139 public static PatternBrush Horizontal ( Color foreColor )
140140 => new ( foreColor , Color . Transparent , HorizontalPattern ) ;
141141
@@ -144,7 +144,7 @@ public static PatternBrush Horizontal(Color foreColor)
144144 /// </summary>
145145 /// <param name="foreColor">Color of the foreground.</param>
146146 /// <param name="backColor">Color of the background.</param>
147- /// <returns>A New <see cref="PatternBrush"/></returns>
147+ /// <returns>A new <see cref="PatternBrush"/></returns>
148148 public static PatternBrush Horizontal ( Color foreColor , Color backColor )
149149 => new ( foreColor , backColor , HorizontalPattern ) ;
150150
@@ -153,7 +153,7 @@ public static PatternBrush Horizontal(Color foreColor, Color backColor)
153153 /// transparent background.
154154 /// </summary>
155155 /// <param name="foreColor">Color of the foreground.</param>
156- /// <returns>A New <see cref="PatternBrush"/></returns>
156+ /// <returns>A new <see cref="PatternBrush"/></returns>
157157 public static PatternBrush Min ( Color foreColor )
158158 => new ( foreColor , Color . Transparent , MinPattern ) ;
159159
@@ -162,7 +162,7 @@ public static PatternBrush Min(Color foreColor)
162162 /// </summary>
163163 /// <param name="foreColor">Color of the foreground.</param>
164164 /// <param name="backColor">Color of the background.</param>
165- /// <returns>A New <see cref="PatternBrush"/></returns>
165+ /// <returns>A new <see cref="PatternBrush"/></returns>
166166 public static PatternBrush Min ( Color foreColor , Color backColor )
167167 => new ( foreColor , backColor , MinPattern ) ;
168168
@@ -171,7 +171,7 @@ public static PatternBrush Min(Color foreColor, Color backColor)
171171 /// transparent background.
172172 /// </summary>
173173 /// <param name="foreColor">Color of the foreground.</param>
174- /// <returns>A New <see cref="PatternBrush"/></returns>
174+ /// <returns>A new <see cref="PatternBrush"/></returns>
175175 public static PatternBrush Vertical ( Color foreColor )
176176 => new ( foreColor , Color . Transparent , VerticalPattern ) ;
177177
@@ -180,7 +180,7 @@ public static PatternBrush Vertical(Color foreColor)
180180 /// </summary>
181181 /// <param name="foreColor">Color of the foreground.</param>
182182 /// <param name="backColor">Color of the background.</param>
183- /// <returns>A New <see cref="PatternBrush"/></returns>
183+ /// <returns>A new <see cref="PatternBrush"/></returns>
184184 public static PatternBrush Vertical ( Color foreColor , Color backColor )
185185 => new ( foreColor , backColor , VerticalPattern ) ;
186186
@@ -189,7 +189,7 @@ public static PatternBrush Vertical(Color foreColor, Color backColor)
189189 /// transparent background.
190190 /// </summary>
191191 /// <param name="foreColor">Color of the foreground.</param>
192- /// <returns>A New <see cref="PatternBrush"/></returns>
192+ /// <returns>A new <see cref="PatternBrush"/></returns>
193193 public static PatternBrush ForwardDiagonal ( Color foreColor )
194194 => new ( foreColor , Color . Transparent , ForwardDiagonalPattern ) ;
195195
@@ -198,7 +198,7 @@ public static PatternBrush ForwardDiagonal(Color foreColor)
198198 /// </summary>
199199 /// <param name="foreColor">Color of the foreground.</param>
200200 /// <param name="backColor">Color of the background.</param>
201- /// <returns>A New <see cref="PatternBrush"/></returns>
201+ /// <returns>A new <see cref="PatternBrush"/></returns>
202202 public static PatternBrush ForwardDiagonal ( Color foreColor , Color backColor )
203203 => new ( foreColor , backColor , ForwardDiagonalPattern ) ;
204204
@@ -207,7 +207,7 @@ public static PatternBrush ForwardDiagonal(Color foreColor, Color backColor)
207207 /// transparent background.
208208 /// </summary>
209209 /// <param name="foreColor">Color of the foreground.</param>
210- /// <returns>A New <see cref="PatternBrush"/></returns>
210+ /// <returns>A new <see cref="PatternBrush"/></returns>
211211 public static PatternBrush BackwardDiagonal ( Color foreColor )
212212 => new ( foreColor , Color . Transparent , BackwardDiagonalPattern ) ;
213213
@@ -216,7 +216,7 @@ public static PatternBrush BackwardDiagonal(Color foreColor)
216216 /// </summary>
217217 /// <param name="foreColor">Color of the foreground.</param>
218218 /// <param name="backColor">Color of the background.</param>
219- /// <returns>A New <see cref="PatternBrush"/></returns>
219+ /// <returns>A new <see cref="PatternBrush"/></returns>
220220 public static PatternBrush BackwardDiagonal ( Color foreColor , Color backColor )
221221 => new ( foreColor , backColor , BackwardDiagonalPattern ) ;
222222 }
0 commit comments