Skip to content

Commit 49851ff

Browse files
authored
Merge pull request #430 from percona/patrickbirch-patch-2
Update quickstart-apt.md
2 parents da6cc13 + e661893 commit 49851ff

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/quickstart-apt.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Install with APT
22

3-
Use the Percona repositories to install using APT.
3+
Install the Percona repositories using APT.
44

55
## Prerequisits
66

@@ -10,7 +10,7 @@ Use the Percona repositories to install using APT.
1010

1111
## Installation steps
1212

13-
The examles of the "expected output" depend on the operating system. The following examples are based on Ubuntu 22.04.
13+
The "expected output" depends on the operating system. The following examples are based on Ubuntu 22.04.
1414
{.power-number}
1515

1616
1. Update the package index.
@@ -23,12 +23,12 @@ The examles of the "expected output" depend on the operating system. The followi
2323

2424
??? example "Expected output"
2525

26-
```{.text .no-copy}
27-
Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
28-
Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
29-
Hit:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
30-
...
31-
```
26+
```{.text .no-copy}
27+
Hit:1 http://us.archive.ubuntu.com/ubuntu jammy InRelease
28+
Get:2 http://us.archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
29+
Hit:3 http://us.archive.ubuntu.com/ubuntu jammy-backports InRelease
30+
...
31+
```
3232

3333
2. Install curl.
3434

@@ -185,7 +185,7 @@ The examles of the "expected output" depend on the operating system. The followi
185185
...
186186
```
187187

188-
10. The installation asks you to enter a password. We use 'secret' for these examples, but you can use any password, but you must remember to use your password for the rest of the Quickstart.
188+
10. The installation asks you to enter a password. We use 'secret' for these examples, but you can use any password. You must remember to use your password for the rest of the Quickstart.
189189

190190
![Add a password](_static/strong-password.png "Add a password")
191191

@@ -293,7 +293,7 @@ The examles of the "expected output" depend on the operating system. The followi
293293
All done!
294294
```
295295
296-
14. When the installation completes, check the service status.
296+
14. When the installation is complete, check the service status.
297297
298298
```{.bash data-prompt="$"}
299299
$ sudo systemctl status mysql
@@ -324,7 +324,7 @@ The examles of the "expected output" depend on the operating system. The followi
324324
$ sudo systemctl status mysql
325325
```
326326
327-
15. Log in to the server. Use the password that you entered during the installation process, which could be `secret`orwhatever password you have selected. You do not see the characters in the password as you type.
327+
15. Log in to the server. Use the password you entered during the installation process, which could be `secret` or whatever you have selected. You do not see the characters in the password as you type.
328328
329329
```{.bash data-prompt="$"}
330330
$ mysql -uroot -p
@@ -435,7 +435,7 @@ VALUES
435435
436436
## Run a SELECT query
437437
438-
SELECT queries retrieve data from one or more tables based on specified criteria. They are the most common type of query and can be used for various purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the data in the database but can affect the performance if the query involves large or complex datasets.
438+
SELECT queries retrieve data from one or more tables based on specified criteria. They are the most common type of query and can be used for various purposes, such as displaying, filtering, sorting, aggregating, or joining data. SELECT queries do not modify the data in the database but can affect performance if they involve large or complex datasets.
439439
440440
441441
@@ -489,7 +489,7 @@ mysql> SELECT name FROM employees WHERE id = 6;
489489
490490
## Run an INSERT query
491491
492-
INSERT queries add new data to a table. They are used to populate the database with new information. INSERT queries can insert one or more rows at a time, depending on the syntax. The query may fail if it violates any constraints or rules defined on the table, such as primary keys, foreign keys, unique indexes, or triggers.
492+
INSERT queries add new data to a table and populate the database with new information. Depending on the syntax, INSERT queries can insert one or more rows at a time. The query may fail if it violates any constraints or rules defined on the table, such as primary keys, foreign keys, unique indexes, or triggers.
493493
494494
Insert a row into a table and then run a [SELECT](#select-query) with a WHERE clause to verify the record was inserted.
495495
@@ -522,7 +522,7 @@ mysql> SELECT id, name, email, country FROM employees WHERE id = 11;
522522
523523
## Run a Delete query
524524
525-
DELETE queries remove existing data from a table. They are used to clean up the information no longer needed or relevant in the database. The DELETE queries can delete one or more rows at a time, depending on the specified conditions. They may also trigger cascading deletes on related tables if foreign key constraints are enforced.
525+
DELETE queries remove existing data from a table. They are used to clean up information no longer needed or relevant in the database. Depending on the specified conditions, DELETE queries can delete one or more rows at a time. They may also trigger cascading deletes on related tables if foreign key constraints are enforced.
526526
527527
Delete a row in the table and run a [SELECT](#select-query) with a WHERE clause to verify the deletion.
528528

0 commit comments

Comments
 (0)