lib/yard/serializers/process_serializer.rb in yard-0.6.4 vs lib/yard/serializers/process_serializer.rb in yard-0.6.5
- old
+ new
@@ -11,10 +11,10 @@
# @param [String] cmd the command that will accept data on stdin
def initialize(cmd)
@cmd = cmd
end
- # Overrides serialize behavour and writes data to standard input
+ # Overrides serialize behaviour and writes data to standard input
# of the associated command
def serialize(object, data)
IO.popen(@cmd, 'w') {|io| io.write(data) }
end
end