Skip to content

Commit c01f3fb

Browse files
authored
[DOC] Fix typo and duplicated phrase in MCTS class docstring (#370)
**Title:** `[DOC] Fix typo and duplicated phrase in MCTS class docstring` --- ### Reference Issues/PRs Fixes #369 ### What does this implement/fix? Explain your changes. Fixes a typo and a confusing duplicated phrase in the `MCTS` class docstring located in `pyaptamer/mcts/_algorithm.py`. Specifically: - Fixed `"aptamr"` → `"aptamer"` - Removed the accidental repetition in the sentence: `"generation as described in aptamer generation as described in [1]_"` → `"generation as described in [1]_"` ### Changes **Files changed:** `pyaptamer/mcts/_algorithm.py` (2 lines modified) ### Any other comments? - Documentation-only change (no logic or test changes needed) - Verified the docstring renders correctly with numpydoc format - No new dependencies or breaking changes Co-authored-by: rupeshca007 <rupeshca007@users.noreply.github.com>
1 parent 37fdfe9 commit c01f3fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyaptamer/mcts/_algorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
class MCTS(BaseObject):
1616
"""
17-
MCTS algorithm implementation for string optimization, specifically for aptamr
18-
generation as described in aptamer generation as described in [1]_, originally
17+
MCTS algorithm implementation for string optimization, specifically for aptamer
18+
generation as described in [1]_, originally
1919
introduced in [2]_.
2020
2121
Adapted from:

0 commit comments

Comments
 (0)