# HG changeset patch # User mstorsjo # Date 1276506599 0 # Node ID 68fba42e1dea54fd781be9cf1ba38958f956b0ea # Parent a972e847775b299f3cc72441628c51c972579ed5 Cosmetics: Change connexion to connection in code comments diff -r a972e847775b -r 68fba42e1dea rtsp.c --- a/rtsp.c Mon Jun 14 08:23:59 2010 +0000 +++ b/rtsp.c Mon Jun 14 09:09:59 2010 +0000 @@ -1617,7 +1617,7 @@ ff_http_set_chunked_transfer_encoding(rtsp_hd_out, 0); } else { - /* open the tcp connexion */ + /* open the tcp connection */ ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, host, port, NULL); if (url_open(&rtsp_hd, tcpname, URL_RDWR) < 0) { err = AVERROR(EIO); diff -r a972e847775b -r 68fba42e1dea rtsp.h --- a/rtsp.h Mon Jun 14 08:23:59 2010 +0000 +++ b/rtsp.h Mon Jun 14 09:09:59 2010 +0000 @@ -190,7 +190,7 @@ * @todo Use ByteIOContext instead of URLContext */ typedef struct RTSPState { - URLContext *rtsp_hd; /* RTSP TCP connexion handle */ + URLContext *rtsp_hd; /* RTSP TCP connection handle */ /** number of items in the 'rtsp_streams' variable */ int nb_rtsp_streams; diff -r a972e847775b -r 68fba42e1dea udp.c --- a/udp.c Mon Jun 14 08:23:59 2010 +0000 +++ b/udp.c Mon Jun 14 09:09:59 2010 +0000 @@ -279,7 +279,7 @@ } /** - * Return the local port used by the UDP connexion + * Return the local port used by the UDP connection * @param s1 media file context * @return the local port number */