Skip to content

Commit e6babd3

Browse files
committed
chore: minor changes
1 parent 0152a37 commit e6babd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/leetcode-solutions/0231-power-of-two.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ For `i > 0`, we have:
103103
<pre>
104104
n - 1 = <code>2<sup>i</sup><sub>10</sub> - 1</code> ≥ 0
105105
n & (n-1) = <code>2<sup>i</sup><sub>10</sub></code> & <code>2<sup>i</sup><sub>10</sub> - 1</code> = <code>100...00<sub>2</sub></code> & <code>011...11<sub>2</sub></code> = 0
106-
|__i__| |__i__|
106+
|___i___| |__i__|
107107
</pre>
108108

109109
```

src/pages/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { CollectionEntry, getCollection } from 'astro:content'
2+
import { type CollectionEntry, getCollection } from 'astro:content'
33
44
import Disqus from '@/components/Disqus.astro'
55
import PostLayout from '@/layouts/PostLayout.astro'

0 commit comments

Comments
 (0)