1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-31 10:21:51 +02:00

Fix a bunch of typos

This commit is contained in:
HairyFotr
2017-08-23 10:14:39 +02:00
parent 9c5a67ca0f
commit 985d23a52b
47 changed files with 95 additions and 95 deletions

View File

@@ -14,7 +14,7 @@ lang: en
```c++
/*
* Let's start clasically
* Let's start classically
*/
// all headers from Qt framework start with capital letter 'Q'
@@ -79,7 +79,7 @@ int main(int argc, char *argv[]) {
Notice that *QObject::connect* part. This method is used to connect *SIGNALS* of one objects to *SLOTS* of another.
**Signals** are being emited when certain things happen with objects, like *pressed* signal is emited when user presses on QPushButton object.
**Signals** are being emitted when certain things happen with objects, like *pressed* signal is emitted when user presses on QPushButton object.
**Slots** are *actions* that might be performed in response to received signals.