diff --git a/README.md b/README.md
index eb75d9ac4e8907c0bde126715dc63b70a7970f0f..d1a9bb7fe75a6205124bbdba08f8c82abf58dc08 100644
--- a/README.md
+++ b/README.md
@@ -47,15 +47,13 @@ Check out included example iOS application for the `PasswordStorage` implementat
 
 Start network follower:
 
-```
-let cMix: CMix = ...
+```swift
 try cMix.startNetworkFollower(timeoutMS: 10_000)
 ```
 
 Wait until connected:
 
-```
-let cMix: CMix = ...
+```swift
 let isNetworkHealthy = try cMix.waitForNetwork(timeoutMS: 30_000)
 ```
 
@@ -64,7 +62,6 @@ let isNetworkHealthy = try cMix.waitForNetwork(timeoutMS: 30_000)
 Use the cMix to make a new reception identity:
 
 ```swift
-let cMix: CMix = ...
 let myIdentity = try cMix.makeReceptionIdentity()
 ```