diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-09-02 02:17:22 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-09-02 02:17:22 +0200 |
commit | 87736624cd15794a5a59e58585a0ab2d6d18714d (patch) | |
tree | feaef9a03976dac3c2a56caac90a78109dc2e917 /src/lib | |
parent | m doc (diff) | |
download | libgamma-87736624cd15794a5a59e58585a0ab2d6d18714d.tar.gz libgamma-87736624cd15794a5a59e58585a0ab2d6d18714d.tar.bz2 libgamma-87736624cd15794a5a59e58585a0ab2d6d18714d.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libgamma-facade.c.gpp | 8 | ||||
-rw-r--r-- | src/lib/libgamma-facade.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libgamma-facade.c.gpp b/src/lib/libgamma-facade.c.gpp index 2b083de..b530495 100644 --- a/src/lib/libgamma-facade.c.gpp +++ b/src/lib/libgamma-facade.c.gpp @@ -565,7 +565,7 @@ void libgamma_crtc_information_free(libgamma_crtc_information_t* restrict this) * @param 2 The hexadecimal alphabet. * @param edid The EDID in raw representation. * @param length The length of `edid`. - * @retrun The EDID in hexadecimal representation, + * @return The EDID in hexadecimal representation, * `NULL` on allocation error, `errno` will be set accordingly. */ $>behex_edid () @@ -598,7 +598,7 @@ $>} * * @param edid The EDID in raw representation. * @param length The length of `edid`. - * @retrun The EDID in lowercase hexadecimal representation, + * @return The EDID in lowercase hexadecimal representation, * `NULL` on allocation error, `errno` will be set accordingly. */ $>behex_edid lowercase 0123456789abcdef @@ -609,7 +609,7 @@ $>behex_edid lowercase 0123456789abcdef * * @param edid The EDID in raw representation. * @param length The length of `edid`. - * @retrun The EDID in uppercase hexadecimal representation, + * @return The EDID in uppercase hexadecimal representation, * NULL` on allocation error, `errno` will be set accordingly. */ $>behex_edid uppercase 0123456789ABCDEF @@ -619,7 +619,7 @@ $>behex_edid uppercase 0123456789ABCDEF * Convert an hexadecimal representation of an EDID to a raw representation. * * @param edid The EDID in hexadecimal representation. - * @retrun The EDID in raw representation, it will be half the length + * @return The EDID in raw representation, it will be half the length * of `edid` (the input value). `NULL` on allocation error or * if the EDID is malformated, `errno` will be set accordingly. */ diff --git a/src/lib/libgamma-facade.h b/src/lib/libgamma-facade.h index a36abca..0a384f5 100644 --- a/src/lib/libgamma-facade.h +++ b/src/lib/libgamma-facade.h @@ -297,7 +297,7 @@ void libgamma_crtc_information_free(libgamma_crtc_information_t* restrict this); * * @param edid The EDID in raw representation. * @param length The length of `edid`. - * @retrun The EDID in lowercase hexadecimal representation, + * @return The EDID in lowercase hexadecimal representation, * `NULL` on allocation error, `errno` will be set accordingly. */ char* libgamma_behex_edid_lowercase(const unsigned char* restrict edid, size_t length); @@ -307,7 +307,7 @@ char* libgamma_behex_edid_lowercase(const unsigned char* restrict edid, size_t l * * @param edid The EDID in raw representation. * @param length The length of `edid`. - * @retrun The EDID in uppercase hexadecimal representation, + * @return The EDID in uppercase hexadecimal representation, * NULL` on allocation error, `errno` will be set accordingly. */ char* libgamma_behex_edid_uppercase(const unsigned char* restrict edid, size_t length); @@ -316,7 +316,7 @@ char* libgamma_behex_edid_uppercase(const unsigned char* restrict edid, size_t l * Convert an hexadecimal representation of an EDID to a raw representation. * * @param edid The EDID in hexadecimal representation. - * @retrun The EDID in raw representation, it will be half the length + * @return The EDID in raw representation, it will be half the length * of `edid` (the input value). `NULL` on allocation error or * if the EDID is malformated, `errno` will be set accordingly. */ |