From 76103e931613e658aaa19235ed89da6719926a74 Mon Sep 17 00:00:00 2001 From: j8takagi Date: Fri, 12 Jul 2013 11:22:17 +0900 Subject: [PATCH] =?utf8?q?=E3=82=B5=E3=83=B3=E3=83=97=E3=83=AB=E3=81=A8?= =?utf8?q?=E3=83=89=E3=82=AD=E3=83=A5=E3=83=A1=E3=83=B3=E3=83=88=E3=81=AE?= =?utf8?q?=E6=8E=A8=E6=95=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- doc/autotest_mk.texi | 4 ++-- sample/sort/sort_bug.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/autotest_mk.texi b/doc/autotest_mk.texi index 7b7d3aa..a8e7866 100644 --- a/doc/autotest_mk.texi +++ b/doc/autotest_mk.texi @@ -1142,7 +1142,7 @@ void sort(int array[], int num) @{ @} @end example -バグを含む@file{sort_normal.c}は、次の内容です。 +バグを含む@file{sort_bug.c}は、次の内容です。 @example void sort(int array[], int num) @{ @@ -1154,7 +1154,7 @@ void sort(int array[], int num) @{ for(j=(num-1); j>i; j--) @{ if (array[j-1] > array[j]) @{ val = array[j]; - array[j] = array[j]; // 本当は array[j] = array[j-1]; + array[j] = array[j]; /* 本当は array[j] = array[j-1]; */ array[j-1] = val; @} @} diff --git a/sample/sort/sort_bug.c b/sample/sort/sort_bug.c index 8070d57..4dc8677 100644 --- a/sample/sort/sort_bug.c +++ b/sample/sort/sort_bug.c @@ -7,7 +7,7 @@ void sort(int array[], int num) { for(j=(num-1); j>i; j--) { if (array[j-1] > array[j]) { val = array[j]; - array[j] = array[j]; // 本当は array[j] = array[j-1]; + array[j] = array[j]; /* 本当は array[j] = array[j-1]; */ array[j-1] = val; } } -- 2.18.0