Skip to content

Commit

Permalink
Fix typo in pure-Python example for scan()
Browse files Browse the repository at this point in the history
  • Loading branch information
Starwort committed Oct 22, 2023
1 parent dbec988 commit f34759c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3839,7 +3839,7 @@ max_so_far = input_data[0]
for x in input_data:
if x > max_so_far:
max_so_far = x
running_max.append(x)
running_max.append(max_so_far)
```

#### `count`
Expand Down

0 comments on commit f34759c

Please sign in to comment.