Skip to content

Commit 014a58c

Browse files
committed
Fix backtick spacing
1 parent 09e2c4f commit 014a58c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • component-model/src/language-support

component-model/src/language-support/c.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ the prototype of the `add` function, which should look like this.
7878

7979
```c
8080
uint32_t exports_docs_adder_add_add(uint32_t x, uint32_t y);
81-
```
81+
```
8282
8383
2. `adder.c`, which interfaces with the component model ABI to call your function.
8484
This file contains an `extern` declaration that looks like:
8585
86-
```c
86+
```c
8787
extern void __component_type_object_force_link_adder(void);
88-
```
88+
```
8989

9090
3. `adder_component_type.o`, which contains object code, including
9191
the definition of the `__component_type_object_force_link_adder` function,

0 commit comments

Comments
 (0)