diff --git a/Updater/README.md b/Updater/README.md
index 7468d4287e3c42a82a7811d16c36d7968e75093e..84d81edff99f3c0d00219cd441ae0edb8b443876 100644
--- a/Updater/README.md
+++ b/Updater/README.md
@@ -52,7 +52,8 @@ done by using the following PowerShell commands:
 $TimeSpan = New-TimeSpan -Minutes 1
 
 
-# configure a JobTrigger for the task using the repetition interval from above, repeating forever
+# configure a JobTrigger for the task using the repetition interval from above,
+# repeating forever
 $JobTrigger = New-JobTrigger `
     -Once `
     -At (Get-Date).Date `
@@ -60,16 +61,16 @@ $JobTrigger = New-JobTrigger `
     -RepeatIndefinitely
 
 
-# configure the JobOptions for the task (battery options should not be required on a fixed system,
-# but doesn't hurt either)
+# configure the JobOptions for the task (battery options should not be required
+# on a fixed system, but doesn't hurt either)
 $JobOptions = New-ScheduledJobOption `
     -RunElevated `
     -StartIfOnBattery `
     -ContinueIfGoingOnBattery
 
 
-# set credentials for running the task (requires permission to start/stop the service
-# and overwriting the configuration and binaries)
+# set credentials for running the task (requires permission to start/stop the
+# service and overwriting the configuration and binaries)
 $Cred = Get-Credential