Fix grammatical error

This commit is contained in:
Sylvain Berfini 2017-08-17 10:12:05 +02:00
parent 8485160db7
commit b9c5c8fc96
4 changed files with 4 additions and 4 deletions

View file

@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) {
} catch (const out_of_range &) {
// The call model not exists because the linphone call state
// `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified.
qWarning() << QStringLiteral("Unable to found linphone call:") << call.get();
qWarning() << QStringLiteral("Unable to find linphone call:") << call.get();
return;
}

View file

@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived (
void SipAddressesModel::handleAllEntriesRemoved (const QString &sipAddress) {
auto it = mSipAddresses.find(sipAddress);
if (it == mSipAddresses.end()) {
qWarning() << QStringLiteral("Unable to found sip address: `%1`.").arg(sipAddress);
qWarning() << QStringLiteral("Unable to find sip address: `%1`.").arg(sipAddress);
return;
}

View file

@ -18,7 +18,7 @@ cd $SCRIPT_DIR/..
# ==============================================================================
if ! [ -x "$( command -v "$LINTER" )" ]; then
printf "${RED}Unable to found `$LINTER`.${NC}\n"
printf "${RED}Unable to find `$LINTER`.${NC}\n"
exit 1
fi

View file

@ -24,7 +24,7 @@ cd $SCRIPT_DIR/..
# ==============================================================================
if ! [ -x "$( command -v "$TEST_RUNNER" )" ]; then
printf "${RED}Unable to found `$TEST_RUNNER`. No tests can be executed.${NC}\n"
printf "${RED}Unable to find `$TEST_RUNNER`. No tests can be executed.${NC}\n"
exit 0
fi