ruby/trema/queue-stats-reply.rb in trema-0.2.5 vs ruby/trema/queue-stats-reply.rb in trema-0.2.6
- old
+ new
@@ -1,8 +1,6 @@
#
-# Author: Nick Karanatsios <nickkaranatsios@gmail.com>
-#
# Copyright (C) 2008-2012 NEC Corporation
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
@@ -32,11 +30,11 @@
# would be created as a result of parsing the +OFPT_STATS_REPLY(OFPST_QUEUE)+
# message.
#
# @overload initialize(options={})
#
- # @example
+ # @example
# QueueStatsReply.new(
# :port_no => 1,
# :queue_id => 123,
# :tx_bytes => 128
# :tx_packets => 2
@@ -60,10 +58,10 @@
#
# @option options [Number] :tx_errors
# a counter of transmitted errors.
#
# @return [QueueStatsReply]
- # an object that encapsulates the OFPST_STATS_REPLY(OPPST_QUEUE) OpenFlow message.
+ # an object that encapsulates the OFPST_STATS_REPLY(OFPST_QUEUE) OpenFlow message.
#
def initialize options
super FIELDS, options
end
end