From ae43a1a575f966815f390343564ec828fef17efc Mon Sep 17 00:00:00 2001
From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>
Date: Wed, 13 Dec 2017 16:47:31 +0100
Subject: [PATCH] Rewrap to line length 80.

---
 Updater/README.md | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/Updater/README.md b/Updater/README.md
index 7468d42..84d81ed 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
 
 
-- 
GitLab