Browse Source

Update README.md

nxrighthere 7 years ago
parent
commit
89e48e49c1
1 changed files with 5 additions and 4 deletions
  1. 5 4
      README.md

+ 5 - 4
README.md

@@ -122,11 +122,11 @@ Definitions of flag for `Peer.Send` function:
 
 
 `PacketFlags.Reliable` reliable sequenced, packet must be received by the target peer and resend attempts should be made until the packet is delivered.
 `PacketFlags.Reliable` reliable sequenced, packet must be received by the target peer and resend attempts should be made until the packet is delivered.
 
 
-`PacketFlags.Unsequenced` unsequenced, packet will not be sequenced with other packets and may be delivered out of order.
+`PacketFlags.Unsequenced` a packet will not be sequenced with other packets and may be delivered out of order.
 
 
-`PacketFlags.NoAllocate` packet will not allocate data, and user must supply it instead.
+`PacketFlags.NoAllocate` a packet will not allocate data, and user must supply it instead.
 
 
-`PacketFlags.UnreliableFragment` packet will be fragmented if it exceeds the MTU.
+`PacketFlags.UnreliableFragment` a packet will be fragmented if it exceeds the MTU.
 
 
 #### EventType
 #### EventType
 Definitions of event types for `Event.Type` property:
 Definitions of event types for `Event.Type` property:
@@ -197,5 +197,6 @@ Contains a managed pointer to the packet.
 #### Peer
 #### Peer
 Contains a managed pointer to the peer.
 Contains a managed pointer to the peer.
 
 
-`Packet.IsSet` returns the state of the peer pointer.
+`Peer.IsSet` returns the state of the peer pointer.
 
 
+`Peer.ID` returns the ID of the peer.