diff --git a/docs/creating-an-execution.md b/docs/creating-an-execution.md
index fbbfb4d3310ba19117ca78cad8c383b9f354e068..3a109d903397778da9dfecfe53e80849463156b6 100644
--- a/docs/creating-an-execution.md
+++ b/docs/creating-an-execution.md
@@ -56,7 +56,7 @@ An Execution always refers to a Benchmark. For the Execution to run, the Benchma
 
 As a Benchmark may define multiple supported load and resource types, an Execution has to pick exactly one of each by its name. Additionally, it defines the set of load values and resource values the benchmark should be executed with.
 Both these values are represented as integers, which are interpreted in a [Benchmark-specific way](creating-a-benchmark#load-and-resource-types) to configure the SUT and load generator.
-Similarly, an Execution can select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`.
+Similarly, an Execution must select a subset of the [SLOs defined in the Benchmark](creating-a-benchmark#service-level-objectives-slos). Additionally, these SLOs can be configured by their `properties`.
 <!-- TODO: What happpens if slos are not set? -->
 
 ## Experimental Setup
diff --git a/docs/running-benchmarks.md b/docs/running-benchmarks.md
index 9d600a728b603e928c626f3dd0afa8bee728f67c..5a9ab53501c2af6a38fd4cb310292337924e74de 100644
--- a/docs/running-benchmarks.md
+++ b/docs/running-benchmarks.md
@@ -68,13 +68,17 @@ spec:
   resources:
     resourceType: "Instances" # (5) chose one of the benchmark's resource types
     resourceValues: [1, 2] # (6) select a set of resource amounts
+  slos:
+    - name: "lag trend"
+      properties:
+        threshold: 2000
   execution:
     strategy:
       name: "RestrictionSearch" # (8) chose a search strategy
       restrictions: ["LowerBound"] # (9) configure the search strategy
       searchStrategy: "LinearSearch" # (10) configure the search strategy (cont.)
     duration: 300 # (11) set the experiment duration in seconds
-    repetitions: # (12) set the number of repetitions
+    repetitions: 1 # (12) set the number of repetitions
     loadGenerationDelay: 30 # (13) configure a delay before load generation
 ```