Skip to content

Commit 8993f06

Browse files
fix(raz-config): fix doctest failures in README
- Mark file tree structure as 'text' instead of Rust code - Mark incomplete code examples as 'ignore' to skip compilation - This fixes the CI doctest failures
1 parent 3269206 commit 8993f06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

raz-config/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ You can configure RAZ behavior using `.raz/config.toml`:
6060

6161
Custom templates are defined in `.raz/templates/` directory in your workspace:
6262

63-
```
63+
```text
6464
.raz/
6565
├── templates/
6666
│ ├── my-framework.toml
@@ -183,7 +183,7 @@ For more complex frameworks, create a custom provider:
183183

184184
### Provider Structure
185185

186-
```rust
186+
```rust,ignore
187187
// src/providers/my_framework.rs
188188
use raz_core::{
189189
Provider, FileExecutionContext, ExecutableCommand,
@@ -276,7 +276,7 @@ impl MyFrameworkProvider {
276276

277277
### Registering Custom Providers
278278

279-
```rust
279+
```rust,ignore
280280
// In your application or RAZ configuration
281281
use raz_core::ProviderRegistry;
282282
use my_framework::MyFrameworkProvider;

0 commit comments

Comments
 (0)