From 9f03dfc1f637aef983118ada00ca3cd5c9829402 Mon Sep 17 00:00:00 2001 From: Madelyn Olson <34459052+madolson@users.noreply.github.com> Date: Sun, 7 Apr 2024 00:07:51 -0700 Subject: [PATCH] Fix two typos that were flagged in the 7.2 build (#248) These were flagged on the 7.2 build system, which is using the old spell check. I think we should consider re-adding it as it missed some typos. Relevant: https://github.com/valkey-io/valkey/pull/72 Signed-off-by: Madelyn Olson --- src/Makefile | 2 +- src/eval.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 25ceae9a9..ad22fd8fa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -342,7 +342,7 @@ else endef endif -# Determine install/unstall Redis symlinks for compatibility when +# Determine install/uninstall Redis symlinks for compatibility when # installing/uninstalling Valkey binaries (defaulting to `yes`) USE_REDIS_SYMLINKS?=yes ifeq ($(USE_REDIS_SYMLINKS),yes) diff --git a/src/eval.c b/src/eval.c index 870224938..654224680 100644 --- a/src/eval.c +++ b/src/eval.c @@ -30,7 +30,7 @@ /* * This file initializes the global LUA object and registers functions to call Valkey API from within the LUA language. * It heavily invokes LUA's C API documented at https://www.lua.org/pil/24.html. There are 2 entrypoint functions in this file: - * 1. evalCommand() - Gets invoked everytime a user runs LUA script via eval command on Valkey. + * 1. evalCommand() - Gets invoked every time a user runs LUA script via eval command on Valkey. * 2. scriptingInit() - initServer() function from server.c invokes this to initialize LUA at startup. * It is also invoked between 2 eval invocations to reset Lua. */