lib/ronin/recon/output_formats/dot.rb in ronin-recon-0.1.0.rc1 vs lib/ronin/recon/output_formats/dot.rb in ronin-recon-0.1.0.rc2

- old
+ new

@@ -58,11 +58,11 @@ end # # Returns the descriptive type name for the value object. # - # @param [Values::Value] value + # @param [Value] value # The value object. # # @return [String] # The type name for the value object. # @@ -89,11 +89,11 @@ end # # Returns the body text for the value object. # - # @param [Values::Value] value + # @param [Value] value # The value object. # # @return [String] # The body text for the value object. # @@ -110,11 +110,11 @@ # # Writes a value to the GraphViz DOT output stream as a node # declaration. # - # @param [Values::Value] value + # @param [Value] value # The value object to write. # def <<(value) name = value.to_s label = "#{value_type(value)}\n#{value_text(value)}" @@ -125,13 +125,13 @@ # # Appends a value and it's parent value to the GraphViz DOT output # stream. # - # @param [Values::Value] value + # @param [Value] value # The value to append. # - # @param [Values::Value] parent + # @param [Value] parent # The parent value of the given value. # # @return [self] # def []=(value,parent)