diff --git a/src/serverassert.c b/src/serverassert.c index 9f7402e748..7d6ab8ed68 100644 --- a/src/serverassert.c +++ b/src/serverassert.c @@ -1,8 +1,8 @@ -/* redisassert.c -- Implement the default _serverAssert and _serverPanic which +/* serverassert.c -- Implement the default _serverAssert and _serverPanic which * simply print stack trace to standard error stream. * * This file is shared by those modules that try to print some logs about stack trace - * but don't have their own implementations of functions in redisassert.h. + * but don't have their own implementations of functions in serverassert.h. * * ---------------------------------------------------------------------------- * diff --git a/src/serverassert.h b/src/serverassert.h index a3f95da091..1cbc9fb6cf 100644 --- a/src/serverassert.h +++ b/src/serverassert.h @@ -1,4 +1,4 @@ -/* redisassert.h -- Drop in replacements assert.h that prints the stack trace +/* serverassert.h -- Drop in replacements assert.h that prints the stack trace * in the Redis logs. * * This file should be included instead of "assert.h" inside libraries used by