Skip to content

Commit f60b575

Browse files
committed
Fix figure error in markdown
1 parent f3b203f commit f60b575

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

elisp/06-array.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: 基本数据类型之四 ── 数组和序列
44
---
55

66
序列是列表和数组的统称,也就是说列表和数组都是序列。它们的共性是内部的元素都是有序的。elisp 里的数组包括字符串、向量、char-table 和布尔向量。它们的关系可以用下面图表示:
7+
8+
```
79
_____________________________________________
810
| |
911
| Sequence |
@@ -21,6 +23,7 @@ title: 基本数据类型之四 ── 数组和序列
2123
| |________________________________| |
2224
|_____________________________________________|
2325
26+
```
2427
数组有这样一些特性:
2528

2629
- 数组内的元素都对应一个下标,第一个元素下标为 0,接下来是 1。数组内

0 commit comments

Comments
 (0)