summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-print
diff options
context:
space:
mode:
authorSeba Gamboa <[email protected]>2015-10-21 14:31:13 -0300
committerSeba Gamboa <[email protected]>2015-10-21 14:31:13 -0300
commit25c8e9536530afa72bacb78702a7a6d132c354f3 (patch)
treefc8c2b24814d4c7a8a994390c6ceb859ceae87ca /mrbgems/mruby-print
parent13b552538af9e9794398e4a4177ba1cea04cccca (diff)
downloadmruby-25c8e9536530afa72bacb78702a7a6d132c354f3.tar.gz
mruby-25c8e9536530afa72bacb78702a7a6d132c354f3.zip
Revert "Mark core gems with mrbgem tag"
This reverts commit 5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.
Diffstat (limited to 'mrbgems/mruby-print')
-rw-r--r--mrbgems/mruby-print/mrblib/print.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/mruby-print/mrblib/print.rb b/mrbgems/mruby-print/mrblib/print.rb
index 77a1cb696..38a10661b 100644
--- a/mrbgems/mruby-print/mrblib/print.rb
+++ b/mrbgems/mruby-print/mrblib/print.rb
@@ -1,9 +1,11 @@
+##
+# Kernel
+#
+# ISO 15.3.1
module Kernel
-
##
# Invoke method +print+ on STDOUT and passing +*args+
#
- # @mrbgem mruby-print
# ISO 15.3.1.2.10
def print(*args)
i = 0
@@ -17,7 +19,6 @@ module Kernel
##
# Invoke method +puts+ on STDOUT and passing +*args*+
#
- # @mrbgem mruby-print
# ISO 15.3.1.2.11
def puts(*args)
i = 0
@@ -35,7 +36,6 @@ module Kernel
##
# Print human readable object description
#
- # @mrbgem mruby-print
# ISO 15.3.1.3.34
def p(*args)
i = 0