Coding_Convention: clarify: none return is allowed

returning void is allowed changed Any to Every and clarify the message
This commit is contained in:
Karl Fessel 2021-03-08 14:46:34 +01:00 committed by GitHub
parent 9c78a45ddd
commit a7e2177356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,7 @@
## Return values
* Any function must return one of the following values:
* Every function must return one of the following values or none (void):
* logical value (zero or not zero)
* an error code (given as a negative number or zero) or a positive status
value