Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cobizobi committed Dec 27, 2024
1 parent 2f44a5d commit aa13708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prob-java/src/main/java/de/prob/statespace/StateSpace.java
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public List<Transition> getTransitionsBasedOnParameterValues(final State state,
if (!parameterNames.isEmpty()) {
if (parameterNames.size() != parameterValues.size()) {
throw new IllegalArgumentException("Cannot execute operation " + opName
+ " because the number of parameters does not match the number of provied values: "
+ " because the number of parameters does not match the number of provided values: "
+ parameterNames.size() + " vs " + parameterValues.size());
}
for (int i = 0; i < parameterNames.size(); i++) {
Expand Down

0 comments on commit aa13708

Please sign in to comment.