Skip to content

Commit dac2303

Browse files
authored
Merge pull request #1429 from ruby/Fix-statement-about-evaluation-strategy-of-methods-ja
Fix statement about evaluation strategy of methods (ja)
2 parents 60a0d3c + e87f4f5 commit dac2303

File tree

1 file changed

+1
-1
lines changed
  • ja/documentation/ruby-from-other-languages/to-ruby-from-c-and-cpp

1 file changed

+1
-1
lines changed

ja/documentation/ruby-from-other-languages/to-ruby-from-c-and-cpp/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Cと違って、Rubyは...
6565
* ヘッダファイルはありません。ただ関数(「メソッド」と呼ばれます)とクラスをソース内に記述するだけです。
6666
* `#define`はありません。そのかわりに定数を使います。
6767
* すべての変数はヒープ上に配置されます。あなたがそれを解放する必要はありません。代わりにGCがその世話をしてくれます。
68-
* メソッド(関数)の引数は参照渡しされます。値渡しはされません
68+
* メソッド(関数)の引数は値渡しされます。参照渡しはされません
6969
* `#include <foo>``#include "foo"`の代わりに、`require 'foo'`と書きます。
7070
* アセンブリコードに変換はできません。
7171
* 行の終わりにセミコロンは不要です。

0 commit comments

Comments
 (0)