fix indentation and make minor wording improvements

This commit is contained in:
glyph 2022-09-09 11:04:50 +01:00
parent 0548c6e42a
commit 7548962ff6
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -71,7 +71,7 @@ pub async fn home(db: &State<Database>, flash: Option<FlashMessage<'_>>) -> 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()));
}