fixed table in CONTRIBUTING.md

This commit is contained in:
fourtf 2019-10-13 11:28:19 +02:00 committed by GitHub
parent fdea837747
commit a3b4314111
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,7 @@ void setValue(int value) {
``` ```
**References** mean that the variable doesn't need to be copied when it is passed to a function. **References** mean that the variable doesn't need to be copied when it is passed to a function.
|type|meaning| |type|meaning|
|-|-| |-|-|
|`const Type& name`|*in* Parameter. It is NOT going to be modified and may be copied inside of the function.| |`const Type& name`|*in* Parameter. It is NOT going to be modified and may be copied inside of the function.|