From b06f2d2bf61773df46b9ede744debbc5d72e0f1d Mon Sep 17 00:00:00 2001 From: Pram Date: Mon, 20 May 2019 19:00:28 +0100 Subject: [PATCH 1/3] Fix spelling --- examples/sample-minimal.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sample-minimal.xml b/examples/sample-minimal.xml index f7f6915..6adf921 100644 --- a/examples/sample-minimal.xml +++ b/examples/sample-minimal.xml @@ -33,9 +33,9 @@ MyApp Service (powered by WinSW) - This service is a service cratead from a minimal configuration + This service is a service created from a minimal configuration %BASE%\myExecutable.exe - \ No newline at end of file + From 083c77c1f7a3d725e6eea149a67eb8337892ff9a Mon Sep 17 00:00:00 2001 From: Pram Date: Mon, 20 May 2019 19:01:10 +0100 Subject: [PATCH 2/3] Fix spelling --- examples/sample-allOptions.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/sample-allOptions.xml b/examples/sample-allOptions.xml index 145db03..6bd77e2 100644 --- a/examples/sample-allOptions.xml +++ b/examples/sample-allOptions.xml @@ -36,7 +36,7 @@ All options in other sections are optional MyApp Service (powered by WinSW) - This service is a service cratead from a sample configuration + This service is a service created from a sample configuration %BASE%\myExecutable.exe From 092b9726179bff33882dbcbe1906c32be10dc775 Mon Sep 17 00:00:00 2001 From: Pram Date: Mon, 20 May 2019 19:26:06 +0100 Subject: [PATCH 3/3] Fix test for spelling --- src/Test/winswTests/Configuration/ExamplesTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Test/winswTests/Configuration/ExamplesTest.cs b/src/Test/winswTests/Configuration/ExamplesTest.cs index f33c77d..f501bdf 100644 --- a/src/Test/winswTests/Configuration/ExamplesTest.cs +++ b/src/Test/winswTests/Configuration/ExamplesTest.cs @@ -24,7 +24,7 @@ namespace winswTests.Configuration Assert.AreEqual("myapp", d.Id); Assert.AreEqual("MyApp Service (powered by WinSW)", d.Caption); - Assert.AreEqual("This service is a service cratead from a sample configuration", d.Description); + Assert.AreEqual("This service is a service created from a sample configuration", d.Description); Assert.AreEqual("%BASE%\\myExecutable.exe", d.Executable); ServiceDescriptorAssert.AssertAllOptionalPropertiesAreDefault(d); @@ -37,7 +37,7 @@ namespace winswTests.Configuration Assert.AreEqual("myapp", d.Id); Assert.AreEqual("MyApp Service (powered by WinSW)", d.Caption); - Assert.AreEqual("This service is a service cratead from a minimal configuration", d.Description); + Assert.AreEqual("This service is a service created from a minimal configuration", d.Description); Assert.AreEqual("%BASE%\\myExecutable.exe", d.Executable); ServiceDescriptorAssert.AssertAllOptionalPropertiesAreDefault(d);