From af3646d735c64c7472071f25c0aa620f9738725e Mon Sep 17 00:00:00 2001
From: Thomas Bellman <bellman@nsc.liu.se>
Date: Tue, 1 Dec 2009 09:25:06 +0100
Subject: [PATCH] Remove some apostrophes from comments to work around
 puppet-mode bug.

The Emacs puppet-mode misinterprets apostrophes in comments and think
they are string quotes.  This breaks end-of-defun (C-M-e).  By not
having unmatched apostrophes in comments in class and define bodies,
we work around that.

This also fixes a genuine misspelling ("it's" instead of "its").

This was originally commit 028ff3e2716c in nsc-puppet-utils.
---
 manifests/init.pp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/manifests/init.pp b/manifests/init.pp
index 01b60cb..dff6cd8 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -157,7 +157,7 @@ define xen_domu(
 	    }
 	}
 	"installed": {
-	    # "Installed" means that we don't care if it is running or not
+	    # "Installed" means that we do not care if it is running or not
 	}
 	"stopped": {
 	    xen_domu__::stopped {
-- 
GitLab