diff --git a/docs/advanced-topics/reproducing.md b/docs/advanced-topics/reproducing.md
index 10acda971..6147260f5 100644
--- a/docs/advanced-topics/reproducing.md
+++ b/docs/advanced-topics/reproducing.md
@@ -66,10 +66,11 @@ $ python infra/helper.py pull_images
```bash
$ python infra/helper.py build_image $PROJECT_NAME
-$ python infra/helper.py build_fuzzers --sanitizer
--architecture $PROJECT_NAME
+$ python infra/helper.py build_fuzzers --sanitizer \
+ --architecture $PROJECT_NAME
```
-The `architecture` argument is only necessary if you want to specify `i386`.
+The `architecture` argument is only necessary if you want to specify `i386` configuration.
## Reproducing bugs
```bash
@@ -124,12 +125,12 @@ $ python infra/helper.py build_image $PROJECT_NAME
$ python infra/helper.py build_fuzzers --sanitizer \
--engine --architecture $PROJECT_NAME
$ python infra/helper.py check_build --sanitizer \
- --engine --architecture $PROJECT_NAME
+ --engine --architecture $PROJECT_NAME \
+
```
-
-Note that unless you have a reason to think the build is an i386 build, the build
-is probably an x86_64 build and the `architecture` argument can be omitted.
+Note that unless you have a reason to think the build is an `i386` build, the build
+is probably an `x86_64` build and the `architecture` argument can be omitted.
For reproducing a `coverage` build failure, follow
[Code Coverage page]({{ site.baseurl }}/advanced-topics/code-coverage) to build