Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Fix minor spelling typo #170

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ void config_t::print() {
printf("\nCurrent Presence (%s) :", this->client_id.c_str());
printf("\nState: %s", this->state.c_str());
printf("\nDetails: %s", this->details.c_str());
printf("\nLarge Image: '%s' with toolip, '%s'", this->large_img.key.c_str(),
printf("\nLarge Image: '%s' with tooltip, '%s'", this->large_img.key.c_str(),
this->large_img.text.c_str());
printf("\nSmall Image: '%s' with toolip, '%s'", this->small_img.key.c_str(),
printf("\nSmall Image: '%s' with tooltip, '%s'", this->small_img.key.c_str(),
this->small_img.text.c_str());
printf("\nStart Time: %lld", this->start_time);
printf("\nEnd Time: %lld\n", this->end_time);
Expand Down