mirror of
https://github.com/cc65/cc65.git
synced 2024-11-16 18:08:04 +00:00
Fix function comment example.
Must be on its own line.
This commit is contained in:
parent
d3e0f7b392
commit
8a1e060b13
@ -156,7 +156,8 @@ supports). The exceptions are:
|
||||
this:
|
||||
|
||||
~~~C
|
||||
int foo(int bar) /* Add 1 to bar, takes bar and returns the result */
|
||||
int foo(int bar)
|
||||
/* Add 1 to bar, takes bar and returns the result */
|
||||
{
|
||||
return bar + 1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user