mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix CONTRIBUTING.md
This commit is contained in:
parent
b84210b91d
commit
fb482439c4
1 changed files with 6 additions and 3 deletions
|
@ -45,18 +45,21 @@ In function return values we place the asterisk between spaces
|
|||
|
||||
Good:
|
||||
```c
|
||||
void * my_thread() {
|
||||
void * my_thread()
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
|
||||
Bad:
|
||||
```c
|
||||
void *mythread() {
|
||||
void *mythread()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void * mythread() {
|
||||
void * mythread()
|
||||
{
|
||||
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue