Skip to content

Commit

Permalink
fix: constistent capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedilger committed Sep 13, 2023
1 parent c5f774c commit 0841c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/people/followed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub(super) fn update(app: &mut GossipUi, ctx: &Context, _frame: &mut eframe::Fra
if ui
.button("↓ Merge ↓")
.on_hover_text(
"This pulls down your contact list, merging it into what is already here",
"This pulls down your Contact List, merging it into what is already here",
)
.clicked()
{
Expand All @@ -76,7 +76,7 @@ pub(super) fn update(app: &mut GossipUi, ctx: &Context, _frame: &mut eframe::Fra
if GLOBALS.signer.is_ready() {
if ui
.button("↑ Publish ↑")
.on_hover_text("This publishes your contact list")
.on_hover_text("This publishes your Contact List")
.clicked()
{
let _ = GLOBALS.to_overlord.send(ToOverlordMessage::PushFollow);
Expand Down

0 comments on commit 0841c30

Please sign in to comment.