diff mbox

[ovs-dev] types: correct typo in comment above eth_addr

Message ID 1448949765-15988-1-git-send-email-simon.horman@netronome.com
State Accepted
Headers show

Commit Message

Simon Horman Dec. 1, 2015, 6:02 a.m. UTC
Correct spelling of struct in comment above eth_addr.

Signed-off-by: Simon Horman <simon.horman@netronome.com>
---
 include/openvswitch/types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ben Pfaff Dec. 1, 2015, 6:26 p.m. UTC | #1
On Tue, Dec 01, 2015 at 03:02:45PM +0900, Simon Horman wrote:
> Correct spelling of struct in comment above eth_addr.
> 
> Signed-off-by: Simon Horman <simon.horman@netronome.com>

Thanks Simon, applied.
diff mbox

Patch

diff --git a/include/openvswitch/types.h b/include/openvswitch/types.h
index 64d90121aa38..32b27d03365e 100644
--- a/include/openvswitch/types.h
+++ b/include/openvswitch/types.h
@@ -120,7 +120,7 @@  typedef uint32_t OVS_BITWISE ofp11_port_t;
 #define ODP_PORT_C(X) ((OVS_FORCE odp_port_t) (X))
 #define OFP11_PORT_C(X) ((OVS_FORCE ofp11_port_t) (X))
 
-/* Using this stuct instead of a bare array makes an ethernet address field
+/* Using this struct instead of a bare array makes an ethernet address field
  * assignable.  The size of the array is also part of the type, so it is easier
  * to deal with. */
 struct eth_addr {