1
0
Fork 0
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:
Steffen Vogel 2018-07-04 17:57:06 +02:00
parent b84210b91d
commit fb482439c4

View file

@ -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()
{
}
```