From 7548962ff631eae4e628d4dd5eb2d1e724c56a3d Mon Sep 17 00:00:00 2001 From: glyph Date: Fri, 9 Sep 2022 11:04:50 +0100 Subject: [PATCH] fix indentation and make minor wording improvements --- part_10_extension_ideas/README.md | 2 +- part_9_read_delete/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/part_10_extension_ideas/README.md b/part_10_extension_ideas/README.md index 8df631e..c344c28 100644 --- a/part_10_extension_ideas/README.md +++ b/part_10_extension_ideas/README.md @@ -36,7 +36,7 @@ The application we've written is very basic and still quite rough around the edg I hope I've given you a few ideas for further development and that you feel excited and equipped to continue playing with this application. Make it your own! Modify the CSS, add new features, remove what you don't like...have fun. -If you do end up taking this futher, I'd love to hear about it! Please send me an email on `glyph@mycelial.technology` or on Scuttlebutt. You could also post an issue on the `lykin` git repo. +If you do end up taking this futher, I'd love to hear about it! Please send me an email on `glyph@mycelial.technology` or on Scuttlebutt (`@HEqy940T6uB+T+d9Jaa58aNfRzLx9eRWqkZljBmnkmk=.ed25519`). You could also post an issue on the `lykin` git repo. Please also contact me with any feedback you may have about this tutorial series. diff --git a/part_9_read_delete/README.md b/part_9_read_delete/README.md index b14c655..d7ddc36 100644 --- a/part_9_read_delete/README.md +++ b/part_9_read_delete/README.md @@ -71,7 +71,7 @@ pub async fn home(db: &State, flash: Option>) -> Temp // Count the total unread posts for the given peer. let unread_count = db.get_unread_post_count(&peer.public_key); // Push a tuple of the peer data and peer unread post count - // to the `peers_unread` vector. + // to the `peers_unread` vector. peers_unread.push((peer, unread_count.to_string())); }