Skip to content

Commit 3862f2f

Browse files
authored
Fix typo
1 parent 024bcaa commit 3862f2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

max-flow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ def source(e):
162162

163163
```python
164164
def push(e, flow):
165-
edge = flow_edge[e]
165+
edge = flow_edges[e]
166166
edge.flow += flow
167167

168-
edge = flow_edge[e ^ 1]
168+
edge = flow_edges[e ^ 1]
169169
edge.flow -= flow
170170
```
171171

0 commit comments

Comments
 (0)