From 8946f8cdfba61f47bf933e0b9c315924ce831826 Mon Sep 17 00:00:00 2001 From: Tatsuya Kawano Date: Sun, 15 May 2022 20:28:11 +0800 Subject: [PATCH] =?UTF-8?q?ch03-05=EF=BC=9A=E3=82=B9=E3=83=90=E3=83=AA=20?= =?UTF-8?q?=E2=86=92=20=E3=82=BA=E3=83=90=E3=83=AA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ch03-05-control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch03-05-control-flow.md b/src/ch03-05-control-flow.md index a2e3ef16..71397a24 100644 --- a/src/ch03-05-control-flow.md +++ b/src/ch03-05-control-flow.md @@ -304,7 +304,7 @@ find the problem in the program: --> このコードをコンパイルしようとすると、エラーになります。`if`と`else`アームは互換性のない値の型になり、 -コンパイラがプログラム内で問題の見つかった箇所をスバリ指摘してくれます: +コンパイラがプログラム内で問題の見つかった箇所をズバリ指摘してくれます: ```console {{#include ../listings/ch03-common-programming-concepts/no-listing-31-arms-must-return-same-type/output.txt}}