Skip to content

Commit bfc8f83

Browse files
tweak doc branch graph (#567)
* tweak doc branch graph * Fix link anchor --------- Co-authored-by: Daniil Gusev <daniil@quix.io>
1 parent defe2dc commit bfc8f83

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

docs/branching.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ Before branching, only this was possible:
1212

1313
```
1414
sdf
15-
└── A
16-
└── B
17-
└── C
18-
└── D
15+
└── apply()
16+
└── apply()
17+
└── apply()
18+
└── apply()
1919
```
2020

2121
But with branching, you could do something like:
2222

2323
```
2424
sdf
25-
└── A
26-
└── B
27-
├── C
28-
│ └── D
29-
└── E
30-
├── F
31-
├── G
32-
└── H
25+
└── apply()
26+
└── apply()
27+
├── apply()
28+
│ └── apply()
29+
└── filter() - (does following operations only to this filtered subset)
30+
├── apply()
31+
├── apply()
32+
└── apply()
3333
```
3434

3535
## Branching Use Cases

docs/connectors/sources/custom-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This is the base class for all sources. It handles configuring the source and re
4646
* `stop`: This method is called, in the subporcess, when the application is shutting down.
4747
* `default_topic`: This method is called, in the main process, when a topic is not provided with the source.
4848

49-
For more information, see [`quixstreams.sources.base.BaseSource`](../../api-reference/sources.md#BaseSource) docstrings.
49+
For more information, see [`quixstreams.sources.base.BaseSource`](../../api-reference/sources.md#basesource) docstrings.
5050

5151
## Custom Sources and Jupyter Notebook
5252

0 commit comments

Comments
 (0)