docs: don't look like a C novice #906

This commit is contained in:
Sören Weber 2024-09-06 08:58:29 +02:00
parent a55a3f053d
commit 57f2618bbe
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D

View file

@ -316,13 +316,13 @@ Just a box
> [!secondary]
> ```c
> // With colored border in Markdown syntax
> printf( "Hello world\n" )
> printf("Hello World!");
> ```
{{%/* notice style="red" */%}}
```c
// With colored border in Shortcode syntax
printf( "Hello world\n" )
printf("Hello World!");
```
{{%/* /notice */%}}
````
@ -330,12 +330,12 @@ printf( "Hello world\n" )
> [!secondary]
> ```c
> // With colored border in Markdown syntax
> printf( "Hello world\n" )
> printf("Hello World!");
> ```
{{% notice style="red" %}}
```c
// With colored border in Shortcode syntax
printf( "Hello world\n" )
printf("Hello World!");
```
{{% /notice %}}