[perldocjp-cvs 1869] CVS update: docs/articles/qntm.org/files/perl

Back to archive index

ktats****@users***** ktats****@users*****
2014年 4月 17日 (木) 19:47:54 JST


Index: docs/articles/qntm.org/files/perl/perl.html
diff -u docs/articles/qntm.org/files/perl/perl.html:1.19 docs/articles/qntm.org/files/perl/perl.html:1.20
--- docs/articles/qntm.org/files/perl/perl.html:1.19	Thu Apr 17 10:29:38 2014
+++ docs/articles/qntm.org/files/perl/perl.html	Thu Apr 17 19:47:53 2014
@@ -114,7 +114,7 @@
 
 <p class="original">Perl variables come in three types: <i>scalars</i>, <i>arrays</i> and <i>hashes</i>. Each type has its own <i>sigil</i>: <code>$</code>, <code>@</code> and <code>%</code> respectively. Variables are declared using <code>my</code>, and remain in scope until the end of the enclosing block or file.</p>
 
-<p>Perlの変数には次の3タイプあります: <i>スカラ</i>、<i>配列</i>、 <i>ハッシュ</i>です. それぞれのタイプには、自身の<i>シジル(sigil)</i>があります: それぞれ、<code>$</code>, <code>@</code> and <code>%</code>。 変数は<code>my</code>で宣言され、ブロックかfイルの最後までスコープ内に残ります。</p>
+<p>Perlの変数には次の3タイプあります: <i>スカラ</i>、<i>配列</i>、 <i>ハッシュ</i>です. それぞれのタイプには、自身の<i>シジル(sigil)</i>があります: それぞれ、<code>$</code>, <code>@</code> and <code>%</code>。 変数は<code>my</code>で宣言され、ブロックかファイルの最後までスコープ内に残ります。</p>
 
 <h3 class="original">Scalar variables</h3>
 
@@ -267,7 +267,7 @@
 
 <p class="original">There is no collision between a scalar <code>$var</code> and an array <code>@var</code> containing a scalar entry <code>$var[0]</code>. There may, however, be reader confusion, so avoid this.</p>
 
-<p>スカラ<code>$array</code>とスカラのエントリ<code>$var[0]</code>を持つ配列<code>@var</code>は衝突しません。 とはいえ、コードを読む人が混乱しますので、同じ名前を付けるのは避けましょう。</p>
+<p>スカラ<code>$var</code>とスカラのエントリ<code>$var[0]</code>を持つ配列<code>@var</code>は衝突しません。 とはいえ、コードを読む人が混乱しますので、同じ名前を付けるのは避けましょう。</p>
 
 <p class="original">To get an array's length:</p>
 <p>配列の長さを得るには:</p>



perldocjp-cvs メーリングリストの案内
Back to archive index