Skip to content

Commit 028cb10

Browse files
committed
调整样式
1 parent 3a40975 commit 028cb10

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/content/blog/coding/01_位运算.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ return (((v + (v >>> 4)) & 0x0F0F0F0F) * 0x01010101) >>> 24;
503503
</Collapse>
504504
</TabItem>
505505
<TabItem label="jdk实现">
506-
```java title="jdk实现" showLineNumbers
506+
```java showLineNumbers
507507
@HotSpotIntrinsicCandidate
508508
public static int bitCount(int i) {
509509
// HD, Figure 5-2

src/content/blog/coding/bloom_filter.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,10 @@ import { LinkPreview } from 'astro-pure/advanced' // [!code ++]
175175
<LinkPreview href='https://www.baidu.com/' />
176176
```
177177

178-
import { LinkPreview } from 'astro-pure/advanced' // [!code ++]
178+
import { LinkPreview } from 'astro-pure/advanced'
179179

180180
<LinkPreview href='https://www.baidu.com/' />
181+
<LinkPreview href='https://8cat.life' />
181182

182183
import { GithubCard } from 'astro-pure/advanced'
183184
import { Button } from 'astro-pure/user'

0 commit comments

Comments
 (0)