File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -62,12 +62,12 @@ rb_fiddle_free(VALUE self, VALUE addr)
62
62
*
63
63
* Example:
64
64
*
65
- * >> x = Object.new
66
- * => #<Object:0x0000000107c7d870>
67
- * >> Fiddle.dlwrap(x)
68
- * => 4425504880
69
- * >> Fiddle.dlunwrap(_)
70
- * => #<Object:0x0000000107c7d870>
65
+ * x = Object.new
66
+ * # => #<Object:0x0000000107c7d870>
67
+ * Fiddle.dlwrap(x)
68
+ * # => 4425504880
69
+ * Fiddle.dlunwrap(_)
70
+ * # => #<Object:0x0000000107c7d870>
71
71
*/
72
72
VALUE
73
73
rb_fiddle_ptr2value (VALUE self , VALUE addr )
@@ -82,18 +82,18 @@ rb_fiddle_ptr2value(VALUE self, VALUE addr)
82
82
*
83
83
* Example:
84
84
*
85
- * >> x = Object.new
86
- * => #<Object:0x0000000107c7d870>
87
- * >> Fiddle.dlwrap(x)
88
- * => 4425504880
85
+ * x = Object.new
86
+ * # => #<Object:0x0000000107c7d870>
87
+ * Fiddle.dlwrap(x)
88
+ * # => 4425504880
89
89
*
90
90
* In the case +val+ is not a heap allocated object, this method will return
91
91
* the tagged pointer value.
92
92
*
93
93
* Example:
94
94
*
95
- * >> Fiddle.dlwrap(123)
96
- * => 247
95
+ * Fiddle.dlwrap(123)
96
+ * # => 247
97
97
*/
98
98
static VALUE
99
99
rb_fiddle_value2ptr (VALUE self , VALUE val )
You can’t perform that action at this time.
0 commit comments