Skip to content

Commit c953c55

Browse files
committed
Fix typos in documentation
1 parent c5b26ff commit c953c55

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

fly/logger/logger.hpp

+16-16
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ class Logger : public std::enable_shared_from_this<Logger>
271271
/**
272272
* Add a debug log point to the logger.
273273
*
274-
* @tparam Args Variadic template arguments.
274+
* @tparam ParameterTypes Variadic format parameter types.
275275
*
276276
* @param format The format string for the log point.
277-
* @param args The variadic list of arguments to augment the format string with.
277+
* @param parameters The variadic list of arguments to augment the format string with.
278278
*/
279279
template <typename... ParameterTypes>
280280
inline void
@@ -289,11 +289,11 @@ class Logger : public std::enable_shared_from_this<Logger>
289289
/**
290290
* Add a debug log point to the logger with trace information.
291291
*
292-
* @tparam Args Variadic template arguments.
292+
* @tparam ParameterTypes Variadic format parameter types.
293293
*
294294
* @param trace The trace information for the log point.
295295
* @param format The format string for the log point.
296-
* @param args The variadic list of arguments to augment the format string with.
296+
* @param parameters The variadic list of arguments to augment the format string with.
297297
*/
298298
template <typename... ParameterTypes>
299299
inline void debug(
@@ -311,10 +311,10 @@ class Logger : public std::enable_shared_from_this<Logger>
311311
/**
312312
* Add an informational log point to the logger.
313313
*
314-
* @tparam Args Variadic template arguments.
314+
* @tparam ParameterTypes Variadic format parameter types.
315315
*
316316
* @param format The format string for the log point.
317-
* @param args The variadic list of arguments to augment the format string with.
317+
* @param parameters The variadic list of arguments to augment the format string with.
318318
*/
319319
template <typename... ParameterTypes>
320320
inline void
@@ -329,11 +329,11 @@ class Logger : public std::enable_shared_from_this<Logger>
329329
/**
330330
* Add an informational log point to the logger with trace information.
331331
*
332-
* @tparam Args Variadic template arguments.
332+
* @tparam ParameterTypes Variadic format parameter types.
333333
*
334334
* @param trace The trace information for the log point.
335335
* @param format The format string for the log point.
336-
* @param args The variadic list of arguments to augment the format string with.
336+
* @param parameters The variadic list of arguments to augment the format string with.
337337
*/
338338
template <typename... ParameterTypes>
339339
inline void info(
@@ -351,10 +351,10 @@ class Logger : public std::enable_shared_from_this<Logger>
351351
/**
352352
* Add a warning log point to the logger.
353353
*
354-
* @tparam Args Variadic template arguments.
354+
* @tparam ParameterTypes Variadic format parameter types.
355355
*
356356
* @param format The format string for the log point.
357-
* @param args The variadic list of arguments to augment the format string with.
357+
* @param parameters The variadic list of arguments to augment the format string with.
358358
*/
359359
template <typename... ParameterTypes>
360360
inline void
@@ -369,11 +369,11 @@ class Logger : public std::enable_shared_from_this<Logger>
369369
/**
370370
* Add a warning log point to the logger with trace information.
371371
*
372-
* @tparam Args Variadic template arguments.
372+
* @tparam ParameterTypes Variadic format parameter types.
373373
*
374374
* @param trace The trace information for the log point.
375375
* @param format The format string for the log point.
376-
* @param args The variadic list of arguments to augment the format string with.
376+
* @param parameters The variadic list of arguments to augment the format string with.
377377
*/
378378
template <typename... ParameterTypes>
379379
inline void warn(
@@ -391,10 +391,10 @@ class Logger : public std::enable_shared_from_this<Logger>
391391
/**
392392
* Add an error log point to the logger.
393393
*
394-
* @tparam Args Variadic template arguments.
394+
* @tparam ParameterTypes Variadic format parameter types.
395395
*
396396
* @param format The format string for the log point.
397-
* @param args The variadic list of arguments to augment the format string with.
397+
* @param parameters The variadic list of arguments to augment the format string with.
398398
*/
399399
template <typename... ParameterTypes>
400400
inline void
@@ -409,11 +409,11 @@ class Logger : public std::enable_shared_from_this<Logger>
409409
/**
410410
* Add an error log point to the logger with trace information.
411411
*
412-
* @tparam Args Variadic template arguments.
412+
* @tparam ParameterTypes Variadic format parameter types.
413413
*
414414
* @param trace The trace information for the log point.
415415
* @param format The format string for the log point.
416-
* @param args The variadic list of arguments to augment the format string with.
416+
* @param parameters The variadic list of arguments to augment the format string with.
417417
*/
418418
template <typename... ParameterTypes>
419419
inline void error(

0 commit comments

Comments
 (0)