Skip to content

Commit 93cafe7

Browse files
fix typo referenced in AlexandreRouma#1083
1 parent 74ae8a4 commit 93cafe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/dsp/chain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ namespace dsp {
9393
void disableBlock(Processor<T, T>* block, Func onOutputChange) {
9494
// Check that the block is part of the chain
9595
if (!blockExists(block)) {
96-
throw std::runtime_error("[chain] Tried to enable a block that isn't part of the chain");
96+
throw std::runtime_error("[chain] Tried to disable a block that isn't part of the chain");
9797
}
9898

9999
// If already disabled, don't do anything

0 commit comments

Comments
 (0)