Fix an escape problem in the docs.  Some \n's didn't have the '\'
escaped, and so were messsing the out output.
 -Erik
diff --git a/applets/usage.h b/applets/usage.h
index 604661f..9b83297 100644
--- a/applets/usage.h
+++ b/applets/usage.h
@@ -344,8 +344,8 @@
 	"Erik\n" \
 	"is\n" \
 	"cool\n" \
-	"$ echo "Erik\nis\ncool"\n" \
-	"Erik\nis\ncool\n"
+	"$ echo "Erik\\nis\\ncool"\n" \
+	"Erik\\nis\\ncool\n"
 
 #define env_trivial_usage \
 	"[-iu] [-] [name=value]... [command]"
diff --git a/include/usage.h b/include/usage.h
index 604661f..9b83297 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -344,8 +344,8 @@
 	"Erik\n" \
 	"is\n" \
 	"cool\n" \
-	"$ echo "Erik\nis\ncool"\n" \
-	"Erik\nis\ncool\n"
+	"$ echo "Erik\\nis\\ncool"\n" \
+	"Erik\\nis\\ncool\n"
 
 #define env_trivial_usage \
 	"[-iu] [-] [name=value]... [command]"
diff --git a/usage.h b/usage.h
index 604661f..9b83297 100644
--- a/usage.h
+++ b/usage.h
@@ -344,8 +344,8 @@
 	"Erik\n" \
 	"is\n" \
 	"cool\n" \
-	"$ echo "Erik\nis\ncool"\n" \
-	"Erik\nis\ncool\n"
+	"$ echo "Erik\\nis\\ncool"\n" \
+	"Erik\\nis\\ncool\n"
 
 #define env_trivial_usage \
 	"[-iu] [-] [name=value]... [command]"