@@ -111,7 +111,7 @@ extern SDL_DECLSPEC bool SDLCALL NET_Init(void);
111
111
*
112
112
* \since This function is available since SDL_Net 3.0.0.
113
113
*
114
- * \sa NET_Quit
114
+ * \sa NET_Init
115
115
*/
116
116
extern SDL_DECLSPEC void SDLCALL NET_Quit (void );
117
117
@@ -163,7 +163,7 @@ extern SDL_DECLSPEC NET_Address * SDLCALL NET_ResolveHostname(const char *host);
163
163
* Block until an address is resolved.
164
164
*
165
165
* The NET_Address objects returned by NET_ResolveHostname take time to do
166
- * their work, so it is does so _asynchronously_ instead of making your
166
+ * their work, so it does so _asynchronously_ instead of making your
167
167
* program wait an indefinite amount of time.
168
168
*
169
169
* However, if you want your program to sleep until the address resolution is
@@ -205,7 +205,7 @@ extern SDL_DECLSPEC int SDLCALL NET_WaitUntilResolved(NET_Address *address, Sint
205
205
* Check if an address is resolved, without blocking.
206
206
*
207
207
* The NET_Address objects returned by NET_ResolveHostname take time to do
208
- * their work, so it is does so _asynchronously_ instead of making your
208
+ * their work, so it does so _asynchronously_ instead of making your
209
209
* program wait an indefinite amount of time.
210
210
*
211
211
* This function allows you to check the progress of that work without
@@ -485,7 +485,7 @@ extern SDL_DECLSPEC NET_StreamSocket * SDLCALL NET_CreateClient(NET_Address *add
485
485
* Block until a stream socket has connected to a server.
486
486
*
487
487
* The NET_StreamSocket objects returned by NET_CreateClient take time to do
488
- * their work, so it is does so _asynchronously_ instead of making your
488
+ * their work, so it does so _asynchronously_ instead of making your
489
489
* program wait an indefinite amount of time.
490
490
*
491
491
* However, if you want your program to sleep until the connection is
@@ -663,7 +663,7 @@ extern SDL_DECLSPEC NET_Address * SDLCALL NET_GetStreamSocketAddress(NET_StreamS
663
663
* Check if a stream socket is connected, without blocking.
664
664
*
665
665
* The NET_StreamSocket objects returned by NET_CreateClient take time to do
666
- * negotiate a connection to a server, so it is does so _asynchronously_
666
+ * negotiate a connection to a server, so it does so _asynchronously_
667
667
* instead of making your program wait an indefinite amount of time.
668
668
*
669
669
* This function allows you to check the progress of that work without
0 commit comments