@@ -131,44 +131,44 @@ public string FormatMethod(string methodName, string returnType, IEnumerable<str
131
131
parametersCount : humanizedParameters . Count ( ) )
132
132
{
133
133
// Method marked with tests attributes
134
- case { test : true } :
134
+ case { test : true } :
135
135
return options . Method . Summary . TestMethod
136
136
. Replace ( TemplateKeys . Verb , humanizedMethodName )
137
137
. FirstCharToUpper ( ) ;
138
138
139
139
// Instance boolean method
140
- case { returns : "bool" , @static : false } :
140
+ case { returns : "bool" , @static : false } :
141
141
return options . Method . Summary . Instance . BoolMethod
142
142
. Replace ( TemplateKeys . Verb , humanizedMethodName )
143
143
. FirstCharToUpper ( ) ;
144
144
145
145
// Static boolean method
146
- case { returns : "bool" , @static : true } :
146
+ case { returns : "bool" , @static : true } :
147
147
return options . Method . Summary . Static . BoolMethod
148
148
. Replace ( TemplateKeys . Verb , humanizedMethodName )
149
149
. FirstCharToUpper ( ) ;
150
150
151
151
// One word, 0 params static method
152
- case { wordsCount : 1 , parametersCount : 0 , @static : true } :
152
+ case { wordsCount : 1 , parametersCount : 0 , @static : true } :
153
153
return options . Method . Summary . Static . ZeroArgsOneWordMethod
154
154
. Replace ( TemplateKeys . Verb , verb )
155
155
. FirstCharToUpper ( ) ;
156
156
157
157
// One word, 0 params instance method
158
- case { wordsCount : 1 , parametersCount : 0 , @static : false } :
158
+ case { wordsCount : 1 , parametersCount : 0 , @static : false } :
159
159
return options . Method . Summary . Instance . ZeroArgsOneWordMethod
160
160
. Replace ( TemplateKeys . Verb , verb )
161
161
. FirstCharToUpper ( ) ;
162
162
163
163
// One word method with params
164
- case { wordsCount : 1 , parametersCount : > 0 } :
164
+ case { wordsCount : 1 , parametersCount : > 0 } :
165
165
return options . Method . Summary . ManyArgsOneWordMethod
166
166
. Replace ( TemplateKeys . Verb , verb )
167
167
. Replace ( TemplateKeys . FirstParam , humanizedParameters . First ( ) )
168
168
. FirstCharToUpper ( ) ;
169
169
170
170
// Multiple words method with params
171
- case { wordsCount : > 1 , parametersCount : > 0 } :
171
+ case { wordsCount : > 1 , parametersCount : > 0 } :
172
172
return options . Method . Summary . ManyArgsManyWordMethod
173
173
. Replace ( TemplateKeys . Verb , verb )
174
174
. Replace ( TemplateKeys . Object , string . Join ( " " , words . Skip ( 1 ) ) )
0 commit comments