summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2023-05-16 07:06:01 -0600
committerKarl Williamson <khw@cpan.org>2023-05-16 07:08:07 -0600
commitc95fddf8e56caff8fd19a9e685ab898ee4e51001 (patch)
tree9189ff52802898359fe0430b4cf86ae4c0662967
parent60d7b0c35a9ad56344c7ba986620633d78bdba6c (diff)
downloadperl-c95fddf8e56caff8fd19a9e685ab898ee4e51001.tar.gz
inline.h: Fix typo in comment
-rw-r--r--inline.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/inline.h b/inline.h
index ba6b44d836..684844c0bd 100644
--- a/inline.h
+++ b/inline.h
@@ -3350,7 +3350,7 @@ Perl_mortal_getenv(const char * str)
* the recursive calls and calls from the logger, and treat them specially.
* Let's say we want to do getenv("foo"). We first find
* getenv(PERL_MEM_LOG) and save it to a fixed-length per-interpreter
- * variable, so no temporary is required. Then we do getenv(foo}, and in
+ * variable, so no temporary is required. Then we do getenv{foo}, and in
* the process of creating a temporary to save it, this function will be
* called recursively to do a getenv(PERL_MEM_LOG). On the recursed call,
* we detect that it is such a call and return our saved value instead of