commit | 47b4c025117482649ef7d5068e5070d4e2b5d65a | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Wed Jan 19 18:05:50 2022 +0100 |
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | Wed Jan 19 18:11:34 2022 +0100 |
tree | 2fea02768d6005934547f075586c60ba7aca6253 | |
parent | 7ff76b46f110448032712b76b0272ac54805987e [diff] |
doc: replace @return by Return: Sphinx expects Return: and not @return to indicate a return value. find . -name '*.c' -exec \ sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \; find . -name '*.h' -exec \ sed -i 's/^\(\s\)\*\(\s*\)@return\(\s\)/\1*\2Return:\3/' {} \; Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>