Skip to content

Commit 90cb3e1

Browse files
authored
Fix Error in Command Compositions for Python (#3003)
1 parent b0e015d commit 90cb3e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/docs/software/commandbased/command-compositions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The ``repeatedly()`` decorator ([Java](https://github.wpilib.org/allwpilib/docs/
5151

5252
```python
5353
# Will run forever unless externally interrupted, restarting every time command.IsFinished() returns true
54-
repeats = commands2.cmd.repeatedly()
54+
repeats = command.repeatedly()
5555
```
5656

5757
### Sequence

0 commit comments

Comments
 (0)