1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 02:55:20 +00:00

Fix function comment example.

Must be on its own line.
This commit is contained in:
Sven Michael Klose 2024-07-22 23:51:16 +02:00
parent d3e0f7b392
commit 8a1e060b13

View File

@ -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;
}