Fix minor typos

This commit is contained in:
Yuri Chornoivan 2019-12-22 10:15:58 +02:00
parent 01c4d0411b
commit ba8ee54558
6 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,7 @@ All this is done completely wirelessly, utilising TLS encryption.
- Android, by installing the KDE Connect app from the [Play Store](https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp) or [F-Droid](https://f-droid.org/repository/browse/?fdid=org.kde.kdeconnect_tp).
## How to install
These instructions explain how to install KDE Connect on your computer. You will also need to install it on your Andriod device and pair them together in the app before using this application. The Android app repository can be found [here](https://cgit.kde.org/kdeconnect-android.git/)
These instructions explain how to install KDE Connect on your computer. You will also need to install it on your Android device and pair them together in the app before using this application. The Android app repository can be found [here](https://cgit.kde.org/kdeconnect-android.git/)
### On Linux
Look in your distribution repo for a package called `kdeconnect-kde`, `kdeconnect-plasma`, or just `kdeconnect`. If it's not there and you know how to build software from sources, you just found the repo :), instructions are [here](https://community.kde.org/KDEConnect#Building_KDE_Connect_.28Desktop.29)
@ -47,7 +47,7 @@ The basic structure of a NetworkPacket is the following:
}
```
The content of the `"body"` section is defined by each Plugin. Hence, only the emisor and receiver plugins of a given packet type need agree on the contents of the body.
The content of the `"body"` section is defined by each Plugin. Hence, only the emitter and receiver plugins of a given packet type need agree on the contents of the body.
NetworkPackets can also have binary data attached that can't be serialized to JSON. In this case, two new fields will be added:

View file

@ -29,7 +29,7 @@
#include "multiplexchannelstate.h"
/**
* The default channel uuid. This channel is opened implicitely (without communication).
* The default channel uuid. This channel is opened implicitly (without communication).
*/
#define DEFAULT_CHANNEL_UUID "a0d0aaf4-1072-4d81-aa35-902a954b1266"

View file

@ -89,7 +89,7 @@ bool WaylandRemoteInput::handlePacket(const NetworkPacket& np)
//For drag'n drop
m_waylandInput->requestPointerButtonPress(Qt::LeftButton);
} else if (isSingleRelease){
//For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofnes.
//For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofness.
m_waylandInput->requestPointerButtonRelease(Qt::LeftButton);
} else if (isScroll) {
m_waylandInput->requestPointerAxis(Qt::Vertical, dy);

View file

@ -149,7 +149,7 @@ bool X11RemoteInput::handlePacket(const NetworkPacket& np)
//For drag'n drop
XTestFakeButtonEvent(display, mainMouseButton, True, 0);
} else if (isSingleRelease){
//For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofnes.
//For drag'n drop. NEVER USED (release is done by tapping, which actually triggers a isSingleClick). Kept here for future-proofness.
XTestFakeButtonEvent(display, mainMouseButton, False, 0);
} else if (isScroll) {
if (dy < 0) {

View file

@ -117,7 +117,7 @@ Q_SIGNALS:
Q_SCRIPTABLE void conversationLoaded(qint64 conversationID, quint64 messageCount);
private /*methods*/:
QString newId(); //Generates successive identifitiers to use as public ids
QString newId(); //Generates successive identifiers to use as public ids
private /*attributes*/:
const QString m_device;

View file

@ -48,7 +48,7 @@
* "body" : "Hello", // Text message body
* "addresses": <List<Address>> // List of Address objects, one for each participant of the conversation
* // The user's Address is excluded so:
* // If this is a single-target messsage, there will only be one
* // If this is a single-target message, there will only be one
* // Address (the other party)
* // If this is an incoming multi-target message, the first Address is the
* // sender and all other addresses are other parties to the conversation