diff --git a/ReadMe.md b/ReadMe.md index 3cb1155..fb127b0 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -11,10 +11,10 @@ To use this PageRank implementation, follow these steps: 3. Import the necessary modules: ```rust -use std::{collections::HashMap, hash::Hash}; +use page_rank::Graph; ``` -4. Define the main function and initialize the graph: +1. Define the main function and initialize the graph: ```rust fn main() {