summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-14 03:03:48 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-14 03:03:48 +0000
commit073297789aac2e4e4208d2bd228627a86c9f9460 (patch)
tree97f14442d2fc805128b2f073e0e54eb52c3f97c2 /ruby.c
parent22e7c535a663d1e309c23865d0abae95c9945650 (diff)
fix r36079
* include/ruby/ruby.h: public symbols must have default visibility. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.c b/ruby.c
index 72fddc4e22..592c584559 100644
--- a/ruby.c
+++ b/ruby.c
@@ -1753,7 +1753,7 @@ parse_and_compile_main(VALUE fname, const struct ruby_compile_main_arg* arg, VAL
* @li loads the file specified by path.
* @li parses the source and compiles it
*
- * @param fname <code>$0</code> is set to this value.
+ * @param fname <code>$0</code> is set to this value.
* If nil,
* uses the given path instead.
* @param path path to the source
@@ -1776,7 +1776,7 @@ ruby_compile_main_from_file(VALUE fname, const char* path, VALUE* error)
*
* This function parses the given source and compiles it
*
- * @param fname <code>$0</code> is set to this value.
+ * @param fname <code>$0</code> is set to this value.
* @param source Ruby source string
* @param error where to store the exception if an error occured.
* @return The compiled source code. Or NULL if an error occured.