Skip to content

Commit 67a23b2

Browse files
committed
Fix markdown lints
1 parent dd9597d commit 67a23b2

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

ctaffy/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ There are readable examples in the examples directory.
1111
Assuming you have Rust and Cargo installed (and a C compiler), then this should work to run the basic example:
1212

1313
```bash
14-
$ git clone https://github.com/DioxusLabs/taffy.git
15-
$ cd taffy/ctaffy/examples
16-
$ ./compile-basic.sh
17-
$ ./basic
14+
git clone https://github.com/DioxusLabs/taffy.git
15+
cd taffy/ctaffy/examples
16+
./compile-basic.sh
17+
./basic
1818
```
1919

2020
## Naming Conventions
@@ -41,7 +41,7 @@ typedef enum TaffyReturnCode {
4141
} TaffyReturnCode;
4242
```
4343

44-
`TAFFY_RETURN_CODE_OK` indicates that the operation succeeded. All other variant indicate
44+
`TAFFY_RETURN_CODE_OK` indicates that the operation succeeded. All other variant indicate
4545

4646
### Result structs
4747

@@ -90,9 +90,8 @@ You only ever get access to a `TaffyNodeId` handle which can be used to manipula
9090

9191
All other functions in the API which accept a pointer to a `TaffyTree` have borrowing semantics: they access the tree during the duration of the function (and if the pointer is not a `const` pointer, may modify the tree), but will not store the pointer or take ownership of the tree.
9292

93-
9493
#### Node creation and manipulation
9594

9695
- `TaffyTree_NewNode` creates a new Node within the tree and returns a `TaffyNodeId` handle to it. The node will initially have the default styles
9796

98-
### Setting styles on node
97+
### Setting styles on node

0 commit comments

Comments
 (0)