diff --git a/src/main/java/de/neemann/digital/core/Model.java b/src/main/java/de/neemann/digital/core/Model.java
index fa120f277..b256e3650 100644
--- a/src/main/java/de/neemann/digital/core/Model.java
+++ b/src/main/java/de/neemann/digital/core/Model.java
@@ -10,7 +10,7 @@ import java.util.*;
/**
* The Model contains all the nodes of the model.
* Every time the circuit is started a new model is created.
- * The model has the possibility to run the model in full step mode (all changes of values are propagated to a stable state)
+ * The model has the possibility to be run in full step mode (all changes of values are propagated to a stable state)
* or in micro stepping mode: Only the gates which had a change on one of the input signals are updated. Then the
* calculation is stopped.
*
@@ -24,8 +24,8 @@ import java.util.*;
*
*