From b94fc40524f65ae3527d7ec899287e00e5bea554 Mon Sep 17 00:00:00 2001 From: illiteratewriter Date: Wed, 25 Sep 2024 21:06:07 +0530 Subject: [PATCH] Fix (docs): incorrect function exported --- chapters/ch04.3-capturing-metadata.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/ch04.3-capturing-metadata.md b/chapters/ch04.3-capturing-metadata.md index 506b24d..4050171 100644 --- a/chapters/ch04.3-capturing-metadata.md +++ b/chapters/ch04.3-capturing-metadata.md @@ -285,7 +285,7 @@ function get_caller_info() {} module.exports = { check_and_create_dir, - get_log_caller, // Add this! + get_caller_info, // Add this! }; ```