Skip to content

Commit

Permalink
Fix readme mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
rikonaka committed Jun 2, 2024
1 parent b36b320 commit f33adf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gcdx"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "Calculate the greatest common divisor of multiple values"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Calculate the greatest common divisor of multiple values.
## Example

```rust
use gcdx::gcdx;
use gcdx::gcdx_euclidean;

fn main() {
let v = vec![10, 9, 8, 7];
Expand Down

0 comments on commit f33adf1

Please sign in to comment.