From 7655db46c837b9b8261616ead169219829d6b196 Mon Sep 17 00:00:00 2001 From: Arlo Date: Thu, 2 May 2024 19:14:36 +0100 Subject: [PATCH] Updated ReadMe --- ReadMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() {