1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

fix: table alignment (#5151)

Small Alignment correction
This commit is contained in:
Dharun
2024-02-07 21:17:21 +05:30
committed by GitHub
parent e2f7abe69a
commit 63c3850f0e

View File

@@ -14,7 +14,7 @@ For example, consider the following `ORDER` table:
```
| OrderID | Company | Quantity |
|-------------|-----------|----------|
|------------|---------|----------|
| 1 | A | 30 |
| 2 | B | 15 |
| 3 | A | 20 |
@@ -30,7 +30,7 @@ Output will be:
```
| TotalQuantity |
|----------------|
|---------------|
| 65 |
```