diff --git a/ryu/ofproto/ofproto_v1_4_parser.py b/ryu/ofproto/ofproto_v1_4_parser.py index 1a606784..88433555 100644 --- a/ryu/ofproto/ofproto_v1_4_parser.py +++ b/ryu/ofproto/ofproto_v1_4_parser.py @@ -4814,11 +4814,11 @@ class OFPActionSetField(OFPAction): This action modifies a header field in the packet. - ================ ====================================================== - Attribute Description - ================ ====================================================== - field Instance of ``OFPMatchField`` - ================ ====================================================== + The set of keywords available for this is same as OFPMatch. + + Example:: + + set_field = OFPActionSetField(eth_src="00:00:00:00:00") """ def __init__(self, field=None, **kwargs): super(OFPActionSetField, self).__init__()