lib/ox/comment.rb in ox-1.2.5 vs lib/ox/comment.rb in ox-1.2.6
- old
+ new
@@ -2,10 +2,10 @@
module Ox
# Coments represent XML comments in an XML document. A comment as value
# attribute only.
class Comment < Node
# Creates a new Comment with the specified value.
- # [value] string value for the comment
+ # @param value [String] string value for the comment
def initialize(value)
super
end
end # Comment