Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
padix-key authored Feb 9, 2022
1 parent 54b4246 commit 5db367e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/biotite/structure/residues.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def residue_iter(array):
Yields
------
chain : AtomArray or AtomArrayStack
residue : AtomArray or AtomArrayStack
A single residue of the input `array`.
Examples
Expand Down Expand Up @@ -626,4 +626,4 @@ def residue_iter(array):
# The exclusive stop is appended to the residue starts
starts = np.append(get_residue_starts(array), [array.array_length()])
for i in range(len(starts)-1):
yield array[..., starts[i] : starts[i+1]]
yield array[..., starts[i] : starts[i+1]]

0 comments on commit 5db367e

Please sign in to comment.