Skip to content

Commit f3392f3

Browse files
committed
Minor fixes
1 parent 9452b3c commit f3392f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ The backslash (`\`) character can be used in a string literal to escape characte
658658
| `\"` | Double quote (`"`) |
659659
| `\a` | ASCII Bell (BEL) |
660660
| `\b` | ASCII Backspace (BS) |
661-
| `\f` | ASCII Formfeed (FF) |
661+
| `\f` | ASCII Form-feed (FF) |
662662
| `\n` | ASCII Linefeed (LF) |
663663
| `\r` | ASCII Carriage Return (CR) |
664664
| `\t` | ASCII Horizontal Tab (TAB) |
@@ -3539,7 +3539,7 @@ The backslash (`\`) character can be used in a string to escape characters that
35393539
| `\"` | Double quote (`"`) |
35403540
| `\a` | ASCII Bell (BEL) |
35413541
| `\b` | ASCII Backspace (BS) |
3542-
| `\f` | ASCII Formfeed (FF) |
3542+
| `\f` | ASCII Form-feed (FF) |
35433543
| `\n` | ASCII Linefeed (LF) |
35443544
| `\r` | ASCII Carriage Return (CR) |
35453545
| `\t` | ASCII Horizontal Tab (TAB) |
@@ -6181,7 +6181,7 @@ Python has built-in functions to handle various aspects of datatypes such as che
61816181

61826182
`type()` and `isinstance()` builtin functions are used for checking the data type of objects.
61836183

6184-
Check out the **Type Checking** section in the chapter **Variable, Objects & Data Types** to learn more about it in detail.
6184+
Check out [Type Checking](#type-checking) section in the chapter [Variable, Objects & Data Types](#variables-objects--data-types) to learn more about it in detail.
61856185

61866186
### Built-in Type Functions
61876187

@@ -6202,7 +6202,7 @@ The following functions are often used to assign a default value or create an em
62026202
| `frozenset()` | `frozenset()` |
62036203
| `dict()` | `{}` |
62046204

6205-
The **Type Casting** section of the chapter **Variable, Objects & Data Types** covers these functions in detail in case any argument is passed.
6205+
The [Type Casting](#type-casting) section of the chapter [Variable, Objects & Data Types](#variables-objects--data-types) covers these functions in detail in case any argument is passed.
62066206

62076207
## I/O Functions
62086208

0 commit comments

Comments
 (0)