Skip to content

Commit 3828071

Browse files
authored
Merge pull request ruanyf#860 from waitingsong/arraybuffer
docs(arrayBuffer): 更新排版相关
2 parents 0a5db0d + f285f0d commit 3828071

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/arraybuffer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434

3535
很多浏览器操作的 API,用到了二进制数组操作二进制数据,下面是其中的几个。
3636

37-
- File API
38-
- XMLHttpRequest
39-
- Fetch API
40-
- Canvas
41-
- WebSockets
37+
- [Canvas](#canvas)
38+
- [Fetch API](#fetch-api)
39+
- [File API](#file-api)
40+
- [WebSockets](#websocket)
41+
- [XMLHttpRequest](#ajax)
4242

4343
## ArrayBuffer 对象
4444

@@ -579,7 +579,7 @@ v3.byteOffset // 2
579579

580580
### TypedArray.prototype.length
581581

582-
`length`属性表示 TypedArray 数组含有多少个成员。注意将`byteLength`属性和`length`属性区分,前者是字节长度,后者是成员长度
582+
`length`属性表示 `TypedArray` 数组含有多少个成员。注意将 `length` 属性和 `byteLength` 属性区分,前者是成员长度,后者是字节长度
583583

584584
```javascript
585585
const a = new Int16Array(8);

0 commit comments

Comments
 (0)