Browse Source

Update README.md

nxrighthere 7 years ago
parent
commit
605345d121
1 changed files with 3 additions and 3 deletions
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -192,11 +192,11 @@ Definitions of peer states for `Peer.State` property:
 #### Memory callbacks
 Provides per application events.
 
-`IntPtr AllocCallback(IntPtr size)` notifies when a memory is requested for allocation. Expects pointer to the newly allocated memory.
+`AllocCallback(IntPtr size)` notifies when a memory is requested for allocation. Expects pointer to the newly allocated memory.
 
-`void FreeCallback(IntPtr memory)` notifies when the memory can be freed.
+`FreeCallback(IntPtr memory)` notifies when the memory can be freed.
 
-`void NoMemoryCallback()` notifies when memory is not enough.
+`NoMemoryCallback()` notifies when memory is not enough.
 
 #### Packet callbacks
 Provides per packet events.