diff mbox series

[FFmpeg-devel,3/6] doc/developer: fix a nonsense statement

Message ID 20230826180748.15977-3-anton@khirnov.net
State Accepted
Commit 836a8e116a06847bb6f2c79bd41ad3108fb3268e
Headers show
Series [FFmpeg-devel,1/6] doc/developer: move a sentence to a more appropriate place | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Anton Khirnov Aug. 26, 2023, 6:07 p.m. UTC
Adding new fields to _functions_ makes no sense, it was supposed to be
structs.
---
 doc/developer.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stefano Sabatini Aug. 27, 2023, 12:21 p.m. UTC | #1
Il sab 26 ago 2023, 20:08 Anton Khirnov <anton@khirnov.net> ha scritto:

> Adding new fields to _functions_ makes no sense, it was supposed to be
> structs.
> ---
>  doc/developer.texi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/doc/developer.texi b/doc/developer.texi
> index d27716ab97..df43119f98 100644
> --- a/doc/developer.texi
> +++ b/doc/developer.texi
> @@ -425,7 +425,7 @@ number remains unchanged.
>  @subsection Adding new interfaces
>  Any new public identifiers in installed headers are considered new API -
> this
>  includes new functions, structs, macros, enum values, typedefs, new
> fields in
> -existing functions, new installed headers, etc. Consider the following
> +existing structs, new installed headers, etc. Consider the following
>  guidelines when adding new APIs.


Obviously ok, thanks.

>
>
diff mbox series

Patch

diff --git a/doc/developer.texi b/doc/developer.texi
index d27716ab97..df43119f98 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -425,7 +425,7 @@  number remains unchanged.
 @subsection Adding new interfaces
 Any new public identifiers in installed headers are considered new API - this
 includes new functions, structs, macros, enum values, typedefs, new fields in
-existing functions, new installed headers, etc. Consider the following
+existing structs, new installed headers, etc. Consider the following
 guidelines when adding new APIs.
 
 @subsubheading Motivation