Skip to content

Commit dc5d8ea

Browse files
committed
chore(doc): Update guide dx/dir-structure/guide [#24]
1 parent ef4cbbb commit dc5d8ea

File tree

1 file changed

+3
-3
lines changed
  • doc/docs/content/docs/dx/dir-structure

1 file changed

+3
-3
lines changed

doc/docs/content/docs/dx/dir-structure/guide.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ dir.write(path)?;
141141

142142
Yes, you can use serde types as well. You need to tell the library what format to use for serialization and deserialization.
143143

144-
This is an example using JSON, but TOML, YAML, and RON are also supported.
144+
This is an example using JSON, but TOML, YAML, and RON are also supported, behind the respective features.
145145

146146
<Mermaid
147147
chart={`
@@ -408,6 +408,7 @@ dir.write(path)?;
408408
## !!steps Or even large directories?
409409

410410
When dealing with large directories, you can use deferred (lazy) reading.
411+
This can be achieved with `DeferredRead`.
411412

412413
<Mermaid
413414
chart={`
@@ -479,7 +480,7 @@ dir.write(path)?;
479480
```
480481
## !!steps And if we want to cache the read values?
481482

482-
The library exposes a `DeferredReadOrOwn` type, which allows you to cache the read values.
483+
The library also exposes a `DeferredReadOrOwn` type, which allows you to cache the read values.
483484

484485
<Mermaid
485486
chart={`
@@ -1396,4 +1397,3 @@ assert!(v.is_dirty());
13961397

13971398
</ScrollyCoding>
13981399

1399-

0 commit comments

Comments
 (0)