NIFI-280 rewording column headers and warning message

This commit is contained in:
danbress 2015-01-31 12:29:07 -05:00
parent d7cf25be9a
commit 220fcac169
2 changed files with 3 additions and 3 deletions

View File

@ -111,7 +111,7 @@ public class DocGenerator {
final File baseDocumenationFile = new File(directory, "index.html");
if (baseDocumenationFile.exists()) {
logger.warn(baseDocumenationFile + " already exists! Overwriting!");
logger.warn(baseDocumenationFile + " already exists, overwriting!");
}
try (final OutputStream output = new BufferedOutputStream(new FileOutputStream(baseDocumenationFile))) {

View File

@ -274,8 +274,8 @@ public class HtmlDocumentationWriter implements DocumentationWriter {
xmlStreamWriter.writeStartElement("tr");
writeSimpleElement(xmlStreamWriter, "th", "Name");
writeSimpleElement(xmlStreamWriter, "th", "Description");
writeSimpleElement(xmlStreamWriter, "th", "Default Value");
writeSimpleElement(xmlStreamWriter, "th", "Valid Values");
writeSimpleElement(xmlStreamWriter, "th", "Default");
writeSimpleElement(xmlStreamWriter, "th", "Values");
xmlStreamWriter.writeStartElement("th");
writeLink(xmlStreamWriter, "EL", "../../html/expression-language-guide.html");
xmlStreamWriter.writeEndElement();