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