From 7ba6a3ce81de139e9a60585d8c975f46a6b54138 Mon Sep 17 00:00:00 2001 From: cheng <98784021+wespc@users.noreply.github.com> Date: Fri, 7 Jul 2023 16:03:39 +0800 Subject: [PATCH] fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix typo "直达"内存耗尽 --- ch18/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch18/README.md b/ch18/README.md index 5a1d8c3..18b17e7 100644 --- a/ch18/README.md +++ b/ch18/README.md @@ -409,7 +409,7 @@ int main() > 为什么 what 函数不应该抛出异常? -what中如果抛出异常,需要try catch捕获,再调用what,一直循环,直达内存耗尽。 +what中如果抛出异常,需要try catch捕获,再调用what,一直循环,直到内存耗尽。 ## 练习18.12 @@ -1059,4 +1059,4 @@ int main(int argc, char const *argv[]) return 0; } -``` \ No newline at end of file +```