From d50d12b49f98e18abd1c0b054b23a64fefd92ea2 Mon Sep 17 00:00:00 2001 From: sarutak <sarutak@oss.nttdata.co.jp> Date: Fri, 20 Jan 2017 14:15:18 +0000 Subject: [PATCH] [SPARK-19302][DOC][MINOR] Fix the wrong item format in security.md ## What changes were proposed in this pull request? In docs/security.md, there is a description as follows. ``` steps to configure the key-stores and the trust-store for the standalone deployment mode is as follows: * Generate a keys pair for each node * Export the public key of the key pair to a file on each node * Import all exported public keys into a single trust-store ``` According to markdown format, the first item should follow a blank line. ## How was this patch tested? Manually tested. Following captures are rendered web page before and after fix. * before  * after  Author: sarutak <sarutak@oss.nttdata.co.jp> Closes #16653 from sarutak/SPARK-19302. --- docs/security.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/security.md b/docs/security.md index baadfefbec..67956930fe 100644 --- a/docs/security.md +++ b/docs/security.md @@ -82,6 +82,7 @@ Key-stores can be generated by `keytool` program. The reference documentation fo [here](https://docs.oracle.com/javase/7/docs/technotes/tools/solaris/keytool.html). The most basic steps to configure the key-stores and the trust-store for the standalone deployment mode is as follows: + * Generate a keys pair for each node * Export the public key of the key pair to a file on each node * Import all exported public keys into a single trust-store -- GitLab