Skip to content

Commit 575fa35

Browse files
committed
renaming: OpCausalHistory -> OpHeader, CausalHistoryX -> HistoryX,
freeing the word 'Causal' for naming causality in op invalidation.
1 parent 95145c8 commit 575fa35

19 files changed

+738
-743
lines changed

src/data/history/BFSHistoryWalk.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { HistoryWalk } from './HistoryWalk';
2-
import { OpCausalHistory } from './OpCausalHistory';
2+
import { OpHeader } from './OpHeader';
33

44

55

6-
class BFSHistoryWalk extends HistoryWalk implements IterableIterator<OpCausalHistory> {
6+
class BFSHistoryWalk extends HistoryWalk implements IterableIterator<OpHeader> {
77

8-
next(): IteratorResult<OpCausalHistory, any> {
8+
next(): IteratorResult<OpHeader, any> {
99
if (this.queue.length > 0) {
1010
const hash = this.dequeue();
1111
for (const succ of this.goFrom(hash)) {

0 commit comments

Comments
 (0)