Update mg_next.md

This commit is contained in:
Evelyn 2016-07-22 14:36:53 +01:00 committed by GitHub
parent 43c317ef4c
commit a5d2772082

View File

@ -6,10 +6,10 @@ signature: |
struct mg_connection *mg_next(struct mg_mgr *, struct mg_connection *);
---
Iterate over all active connections.
Iterates over all active connections.
Returns next connection from the list
of active connections, or `NULL` if there is no more connections. Below
Returns the next connection from the list
of active connections or `NULL` if there are no more connections. Below
is the iteration idiom:
```c