@@ -192,15 +192,15 @@ namespace NLastGetopt {
192
192
bool Has (const TOpt* opt, bool includeDefault = false ) const ;
193
193
194
194
/* *
195
- * @return nil terminated string on the last fetched argument of givne option
195
+ * @return nil terminated string on the last fetched argument of given option
196
196
*
197
197
* @param opt ptr on required object
198
198
* @param includeDefault search in results obtained from default values
199
199
*/
200
200
const char * Get (const TOpt* opt, bool includeDefault = true ) const ;
201
201
202
202
/* *
203
- * @return nil terminated string on the last fetched argument of givne option
203
+ * @return nil terminated string on the last fetched argument of given option
204
204
* if option haven't been fetched, given defaultValue will be returned
205
205
*
206
206
* @param opt ptr on required object
@@ -218,15 +218,15 @@ namespace NLastGetopt {
218
218
bool Has (const TString& name, bool includeDefault = false ) const ;
219
219
220
220
/* *
221
- * @return nil terminated string on the last fetched argument of givne option
221
+ * @return nil terminated string on the last fetched argument of given option
222
222
*
223
223
* @param name long name of required object
224
224
* @param includeDefault search in results obtained from default values
225
225
*/
226
226
const char * Get (const TString& name, bool includeDefault = true ) const ;
227
227
228
228
/* *
229
- * @return nil terminated string on the last fetched argument of givne option
229
+ * @return nil terminated string on the last fetched argument of given option
230
230
* if option haven't been fetched, given defaultValue will be returned
231
231
*
232
232
* @param name long name of required object
@@ -244,15 +244,15 @@ namespace NLastGetopt {
244
244
bool Has (char name, bool includeDefault = false ) const ;
245
245
246
246
/* *
247
- * @return nil terminated string on the last fetched argument of givne option
247
+ * @return nil terminated string on the last fetched argument of given option
248
248
*
249
249
* @param c short name of required object
250
250
* @param includeDefault search in results obtained from default values
251
251
*/
252
252
const char * Get (char name, bool includeDefault = true ) const ;
253
253
254
254
/* *
255
- * @return nil terminated string on the last fetched argument of givne option
255
+ * @return nil terminated string on the last fetched argument of given option
256
256
* if option haven't been fetched, given defaultValue will be returned
257
257
*
258
258
* @param c short name of required object
@@ -261,7 +261,7 @@ namespace NLastGetopt {
261
261
const char * GetOrElse (char name, const char * defaultValue) const ;
262
262
263
263
/* *
264
- * for givne option return parsed value of the last fetched argument
264
+ * for given option return parsed value of the last fetched argument
265
265
* if option haven't been fetched, HandleError action is called
266
266
*
267
267
* @param opt required option (one of: ptr, short name, long name).
@@ -280,7 +280,7 @@ namespace NLastGetopt {
280
280
}
281
281
282
282
/* *
283
- * for givne option return parsed value of the last fetched argument
283
+ * for given option return parsed value of the last fetched argument
284
284
* if option haven't been fetched, given defaultValue will be returned
285
285
*
286
286
* @param opt required option (one of: ptr, short name, long name).
0 commit comments