Skip to content

Commit

Permalink
chore: add comma for test code in the doc string
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy committed Dec 6, 2023
1 parent ebfacef commit f3ae68b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Write the Code
```rust
use kcl_lang::*;
use std::path::Path;
use anyhow::Result
use anyhow::Result;

fn main() -> Result<()> {
let api = API::new()?;
Expand Down
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Write the Code
```rust
use kcl_lang::*;
use std::path::Path;
use anyhow::Result
use anyhow::Result;

fn main() -> Result<()> {
// File case
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! ```rust
//! use kcl_lang::*;
//! use std::path::Path;
//! use anyhow::Result
//! use anyhow::Result;
//!
//! fn main() -> Result<()> {
//! let api = API::new()?;
Expand Down

0 comments on commit f3ae68b

Please sign in to comment.