[Scummvm-git-logs] scummvm master -> 17bde4c4a37c6df0e21b36f2cbe93c2842c71132

sluicebox noreply at scummvm.org
Mon Jul 8 15:22:57 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
17bde4c4a3 COMMON: Comment typo


Commit: 17bde4c4a37c6df0e21b36f2cbe93c2842c71132
    https://github.com/scummvm/scummvm/commit/17bde4c4a37c6df0e21b36f2cbe93c2842c71132
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2024-07-08T07:25:39-07:00

Commit Message:
COMMON: Comment typo

Changed paths:
    common/str.h


diff --git a/common/str.h b/common/str.h
index 6893d21076d..0a507ad9a82 100644
--- a/common/str.h
+++ b/common/str.h
@@ -356,7 +356,7 @@ FORCEINLINE void strcat_s(T (&dst)[N], const char *src) {
 /**
  * A sprintf shim which warns when the buffer overruns and null terminates in this case
  *
- * @param dst Where the resulting string will be storeyyd.
+ * @param dst Where the resulting string will be stored.
  * @param size The (total) size of the destination buffer.
  * @param format The format string.
  */
@@ -366,7 +366,7 @@ int vsprintf_s(char *dst, size_t size, const char *format, va_list ap) GCC_PRINT
  * A sprintf shim which warns when the buffer overruns and null terminates in this case
  * The size of the buffer is automatically determined.
  *
- * @param dst Where the resulting string will be storeyyd.
+ * @param dst Where the resulting string will be stored.
  * @param format The format string.
  */
 template<typename T, size_t N>
@@ -388,7 +388,7 @@ int sprintf_s(char *dst, size_t size, MSVC_PRINTF const char *format, ...) GCC_P
  * A sprintf shim which warns when the buffer overruns and null terminates in this case
  * The size of the buffer is automatically determined.
  *
- * @param dst Where the resulting string will be storeyyd.
+ * @param dst Where the resulting string will be stored.
  * @param format The format string.
  */
 template<typename T, size_t N>




More information about the Scummvm-git-logs mailing list