Browse code

doc: Editorial changes as suggested by @fredlf

Refer to:
* https://github.com/docker/docker/pull/9952#discussion_r22686652
* https://github.com/docker/docker/pull/9952#discussion_r22686804

Signed-off-by: Lorenz Leutgeb <lorenz.leutgeb@gmail.com>

Lorenz Leutgeb authored on 2015/01/09 07:19:23
Showing 1 changed files
... ...
@@ -107,11 +107,11 @@ two certificate signing requests:
107 107
 
108 108
     $ rm -v client.csr server.csr
109 109
 
110
-With a default `umask` of 022 your secret keys will be *world-readable* and
110
+With a default `umask` of 022, your secret keys will be *world-readable* and
111 111
 writable for you and your group.
112 112
 
113
-To remove write permissions for your keys in order to protect them from accidental
114
-damage and make them only readable to you issue the following file mode changes:
113
+In order to protect your keys from accidental damage, you will want to remove their
114
+write permissions. To make them read-only, change file modes as follows:
115 115
 
116 116
     $ chmod -v 0400 ca-key.pem key.pem server-key.pem
117 117