From: j8takagi Date: Fri, 12 Jul 2013 02:22:17 +0000 (+0900) Subject: サンプルとドキュメントの推敲 X-Git-Tag: 0.2p4~1 X-Git-Url: https://j8takagi.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76103e931613e658aaa19235ed89da6719926a74;p=autotest_mk.git サンプルとドキュメントの推敲 --- 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; } }