summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadelyn Olson <34459052+madolson@users.noreply.github.com>2023-05-03 10:35:28 -0700
committerGitHub <noreply@github.com>2023-05-03 10:35:28 -0700
commitfbbedcf5936f6016db0871bcfec3ee158924249e (patch)
tree989c399f4e6270dc13ae4ceefb88cdf32526af19
parent5e3be1be09c947810732e7be2a4bb1b0ed75de4a (diff)
downloadredis-fbbedcf5936f6016db0871bcfec3ee158924249e.tar.gz
Fix name of module API in documentation (#12119)
API incorrectly uses ExecutionUnit instead of Notification.
-rw-r--r--src/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/module.c b/src/module.c
index 561677e7e..4ceef7cef 100644
--- a/src/module.c
+++ b/src/module.c
@@ -8554,7 +8554,7 @@ void moduleReleaseGIL(void) {
* that the notification code will be executed in the middle on Redis logic
* (commands logic, eviction, expire). Changing the key space while the logic
* runs is dangerous and discouraged. In order to react to key space events with
- * write actions, please refer to `RM_AddPostExecutionUnitJob`.
+ * write actions, please refer to `RM_AddPostNotificationJob`.
*
* See https://redis.io/topics/notifications for more information.
*/