Skip to content

Commit 45687aa

Browse files
committed
feat: add documenting everything guide
1 parent f6e5738 commit 45687aa

File tree

6 files changed

+425
-19
lines changed

6 files changed

+425
-19
lines changed

src/components/feature-test-macro/FeatureTestMacroValue.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ interface Props {
99
const { value, since } = Astro.props;
1010
---
1111

12-
<td>{value}</td>
13-
<td class="ftm-since-cell">{since}</td>
14-
<td><slot /></td>
12+
<tr>
13+
<td>{value}</td>
14+
<td class="ftm-since-cell">{since}</td>
15+
<td><slot /></td>
16+
</tr>
1517

1618
<style>
1719
.ftm-since-cell {

src/content/docs/c/library/headers/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ The interface of C standard library is defined by the following collection of he
2727
<RevisionBlock slot="item" noborder since="C99" dir="v">
2828
<CHeader name="complex" />
2929
</RevisionBlock>
30-
Conditionally compiled macro that compares its argument to zero
30+
Complex number arithmetic
3131
</Desc>
32-
32+
3333
<Desc>
3434
<CHeader slot="item" name="ctype" />
3535
Functions to determine the type contained in character data
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
label: Development Guideline
2-
order: 2
2+
order: 2

0 commit comments

Comments
 (0)