Commit b9c5c8fc authored by Sylvain Berfini's avatar Sylvain Berfini

Fix grammatical error

parent 8485160d
...@@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) { ...@@ -249,7 +249,7 @@ void CallsListModel::removeCall (const shared_ptr<linphone::Call> &call) {
} catch (const out_of_range &) { } catch (const out_of_range &) {
// The call model not exists because the linphone call state // The call model not exists because the linphone call state
// `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified. // `CallStateIncomingReceived`/`CallStateOutgoingInit` was not notified.
qWarning() << QStringLiteral("Unable to found linphone call:") << call.get(); qWarning() << QStringLiteral("Unable to find linphone call:") << call.get();
return; return;
} }
......
...@@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived ( ...@@ -327,7 +327,7 @@ void SipAddressesModel::handlePresenceReceived (
void SipAddressesModel::handleAllEntriesRemoved (const QString &sipAddress) { void SipAddressesModel::handleAllEntriesRemoved (const QString &sipAddress) {
auto it = mSipAddresses.find(sipAddress); auto it = mSipAddresses.find(sipAddress);
if (it == mSipAddresses.end()) { 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; return;
} }
......
...@@ -18,7 +18,7 @@ cd $SCRIPT_DIR/.. ...@@ -18,7 +18,7 @@ cd $SCRIPT_DIR/..
# ============================================================================== # ==============================================================================
if ! [ -x "$( command -v "$LINTER" )" ]; then if ! [ -x "$( command -v "$LINTER" )" ]; then
printf "${RED}Unable to found `$LINTER`.${NC}\n" printf "${RED}Unable to find `$LINTER`.${NC}\n"
exit 1 exit 1
fi fi
......
...@@ -24,7 +24,7 @@ cd $SCRIPT_DIR/.. ...@@ -24,7 +24,7 @@ cd $SCRIPT_DIR/..
# ============================================================================== # ==============================================================================
if ! [ -x "$( command -v "$TEST_RUNNER" )" ]; then 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 exit 0
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment