Skip to content

Commit 9739ddc

Browse files
committed
fix links in CONTRIBUTING.md
1 parent dd8691d commit 9739ddc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ To add a new package manager, make sure to follow these steps:
6767

6868
The first item `Cargo` corresponds to the name of the package manager. The second item `cargo` is the display name. Then we have the name of the package manager file that will be parsed: `Cargo.toml` along with its parser `cargo` (cf. step 2), notice that the third item is an array of tuple in case the package manager has multiple parsers (e.g. pip).
6969

70-
2. In [package_parser.rs](src/info/deps/package_parser.rs): create a function that takes an input of type `&str` representing the content of the package manager's file, and returns a `usize` as its number of dependencies.
70+
2. In [package_manager.rs](src/info/deps/package_manager.rs): create a function that takes an input of type `&str` representing the content of the package manager's file, and returns a `usize` as its number of dependencies.
7171

7272
```rust
7373
pub fn cargo(contents: &str) -> Result<usize> {

0 commit comments

Comments
 (0)