Skip to content

Commit a29ab8b

Browse files
author
Zhang Jun
committed
fix typeing
1 parent ada8f67 commit a29ab8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client-go/1.store-indexer-cache.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
cache 实现了 `Store``Indexer` 接口,函数 `NewIndexer()``NewStore()` 均返回 cache 类型的对象。
99

10-
cache 使用比较广泛,如各种 `Informer``DeltaFIFO` 用它做缓存和索引对象
10+
cache 使用比较广泛,如各种 `Informer``DeltaFIFO` 用它做对象缓存和索引
1111

1212
## 对象缓存 Store
1313

@@ -32,7 +32,7 @@ type Store interface {
3232

3333
`NewStore()` 函数返回一个实现该接口的 `struct cache` 类型对象(见后文分析)。
3434

35-
`Queue` 接口是 `Store` 的超级,所以实现 `Queue` 接口的 `FIFO` 类型、`DeltaFIFO` 类型也实现了 `Store`接口。(详见: [2.queue-fifo-delta_fifo.md](./2.queue-fifo-delta_fifo.md))
35+
`Queue` 接口是 `Store` 的超集,所以实现 `Queue` 接口的 `FIFO` 类型、`DeltaFIFO` 类型也实现了 `Store`接口。(详见: [2.queue-fifo-delta_fifo.md](./2.queue-fifo-delta_fifo.md))
3636

3737
## 对象索引 Indexer
3838

0 commit comments

Comments
 (0)