Browse Source

Merge pull request #1035 from timchenxiaoyu/fixword

Initial capitalization
Tom Denham 6 years ago
parent
commit
0abaa4d7e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/vxlan/vxlan.go

+ 1 - 1
backend/vxlan/vxlan.go

@@ -43,7 +43,7 @@ package vxlan
 // How it works:
 // Create the vxlan device but don't register for any L2MISS or L3MISS messages
 // Then, as each remote host is discovered (either on startup or when they are added), do the following
-// 1) create routing table entry for the remote subnet. It goes via the vxlan device but also specifies a next hop (of the remote flannel host).
+// 1) Create routing table entry for the remote subnet. It goes via the vxlan device but also specifies a next hop (of the remote flannel host).
 // 2) Create a static ARP entry for the remote flannel host IP address (and the VTEP MAC)
 // 3) Create an FDB entry with the VTEP MAC and the public IP of the remote flannel daemon.
 //