aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/modules/index.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/index.rs b/src/modules/index.rs
index 46ffc74..3b7e0fa 100644
--- a/src/modules/index.rs
+++ b/src/modules/index.rs
@@ -38,7 +38,7 @@ Don't know where to start? Check out the directory or test your luck!
posts
.iter()
- .map(|post| format!("=> {} {}", post.title(), post.link()))
+ .map(|post| format!("=> {} {}", post.link(), post.title()))
.collect::<Vec<String>>()
.into_iter()
.take(3)