# HG changeset patch # User stefano # Date 1234730710 0 # Node ID dee012239d999ab5e1d2afa93242f2a1260edd64 # Parent d7a7c516f28178d2e7bf88cd57c64d438e436090 Improve grammar: "X next after Y" -> "next X after Y". diff -r d7a7c516f281 -r dee012239d99 avformat.h --- a/avformat.h Sun Feb 15 16:53:05 2009 +0000 +++ b/avformat.h Sun Feb 15 20:45:10 2009 +0000 @@ -689,14 +689,14 @@ /** * If f is NULL, returns the first registered input format, - * if f is non-NULL, returns the registered input format next after f, + * if f is non-NULL, returns the next registered input format after f, * or NULL if f is the last one. */ AVInputFormat *av_iformat_next(AVInputFormat *f); /** * If f is NULL, returns the first registered output format, - * if f is non-NULL, returns the registered output format next after f, + * if f is non-NULL, returns the next registered output format after f, * or NULL if f is the last one. */ AVOutputFormat *av_oformat_next(AVOutputFormat *f); diff -r d7a7c516f281 -r dee012239d99 avio.h --- a/avio.h Sun Feb 15 16:53:05 2009 +0000 +++ b/avio.h Sun Feb 15 20:45:10 2009 +0000 @@ -145,7 +145,7 @@ /** * If protocol is NULL, returns the first registered protocol, - * if protocol is non-NULL, returns the registered protocol next after protocol, + * if protocol is non-NULL, returns the next registered protocol after protocol, * or NULL if protocol is the last one. */ URLProtocol *av_protocol_next(URLProtocol *p);