summaryrefslogtreecommitdiff
path: root/core/error_macros.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-04-21 20:16:56 +0200
committerGitHub <noreply@github.com>2019-04-21 20:16:56 +0200
commitc66ed35004a264b507d2fc85d2a7f2a15344f421 (patch)
treed9c98bf56c1266d61ad0ef4d74968c3762f0b5ed /core/error_macros.h
parent6d8b209fc5f5dcbce6f067ce0a26ba158a1817d9 (diff)
parentbab27547d3b0e38dd8e28f880c57672db547ff69 (diff)
Merge pull request #27376 from follower/patch-1
Typo fix: "the function exists" -> "the function exits"
Diffstat (limited to 'core/error_macros.h')
-rw-r--r--core/error_macros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/error_macros.h b/core/error_macros.h
index ca5ccd24cf..78e29551d4 100644
--- a/core/error_macros.h
+++ b/core/error_macros.h
@@ -86,7 +86,7 @@ void _err_print_index_error(const char *p_function, const char *p_file, int p_li
#define _FNL __FILE__ ":"
-/** An index has failed if m_index<0 or m_index >=m_size, the function exists */
+/** An index has failed if m_index<0 or m_index >=m_size, the function exits */
extern bool _err_error_exists;
@@ -140,7 +140,7 @@ extern bool _err_error_exists;
_err_error_exists = false; \
} while (0); // (*)
-/** An index has failed if m_index<0 or m_index >=m_size, the function exists.
+/** An index has failed if m_index<0 or m_index >=m_size, the function exits.
* This function returns an error value, if returning Error, please select the most
* appropriate error condition from error_macros.h
*/
@@ -154,7 +154,7 @@ extern bool _err_error_exists;
_err_error_exists = false; \
} while (0); // (*)
-/** An index has failed if m_index >=m_size, the function exists.
+/** An index has failed if m_index >=m_size, the function exits.
* This function returns an error value, if returning Error, please select the most
* appropriate error condition from error_macros.h
*/