Skip to content

Commit e40be7a

Browse files
committed
added hotfix
1 parent 079c41e commit e40be7a

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

docs/python/python_operators.md

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,26 @@ In Python, **operators** are special symbols used to perform operations on varia
2525

2626
Python provides the following types of operators:
2727

28-
1. [Arithmetic Operators](#1-arithmetic-operators)
29-
2. [Comparison Operators](#2-comparison-operators)
30-
3. [Logical Operators](#3-logical-operators)
31-
4. [Assignment Operators](#4-assignment-operators)
32-
5. [Bitwise Operators](#5-bitwise-operators)
33-
6. [Membership Operators](#6-membership-operators)
34-
7. [Identity Operators](#7-identity-operators)
35-
8. [Operator Precedence](#8-operator-precedence)
28+
- [Python Operators](#python-operators)
29+
- [Operator Categories](#operator-categories)
30+
- [Arithmetic Operators](#arithmetic-operators)
31+
- [Comparison Operators](#comparison-operators)
32+
- [Logical Operators](#logical-operators)
33+
- [Assignment Operators](#assignment-operators)
34+
- [Bitwise Operators](#bitwise-operators)
35+
- [Membership Operators](#membership-operators)
36+
- [Identity Operators](#identity-operators)
37+
- [Use Cases of Python Operators](#use-cases-of-python-operators)
38+
- [1. **Arithmetic Operators**](#1-arithmetic-operators)
39+
- [2. **Comparison Operators**](#2-comparison-operators)
40+
- [3. **Logical Operators**](#3-logical-operators)
41+
- [4. **Assignment Operators**](#4-assignment-operators)
42+
- [5. **Bitwise Operators**](#5-bitwise-operators)
43+
- [6. **Membership Operators**](#6-membership-operators)
44+
- [7. **Identity Operators**](#7-identity-operators)
45+
- [8. **Operator Precedence**](#8-operator-precedence)
46+
- [Summary Table](#summary-table)
47+
- [Conclusion](#conclusion)
3648

3749

3850
## Arithmetic Operators
@@ -66,7 +78,7 @@ Used to compare two values and return a Boolean result (`True` or `False`).
6678

6779
## Logical Operators
6880

69-
Used to combine conditional statements.
81+
Used to combine conditional statements here.
7082

7183
| Operator | Description | Example | Result |
7284
|----------|-----------------------------------|----------------------|--------|

src/components/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const HeaderImage = () => {
142142
<img
143143
src="/img/hero-img-01.gif" // Image source
144144
alt="hero-img" // Alt attribute
145-
className="float-animation" // Additional CSS class
145+
className="" // Additional CSS class
146146
data-tilt // Activate VanillaTilt effect
147147
ref={imgRef} // Reference for image element
148148
/>

src/components/header/header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const HeaderImage = () => {
123123
<img
124124
src="/img/hero-img-01.gif"
125125
alt="Animated illustration of Recode Hive learning"
126-
className="float-animation"
126+
className=""
127127
data-tilt
128128
ref={imgRef}
129129
/>

0 commit comments

Comments
 (0)