This commit is contained in:
ShubhamRwt
2022-02-16 16:51:06 +05:30
parent 5b56e1af8a
commit a9e18732c8
2 changed files with 6 additions and 6 deletions

View File

@@ -20,15 +20,15 @@ package io.github.swagger2markup.markup.builder;
public enum LineSeparator {
/**
* Line separator for Unix systems (<code>\n</code>).
* Line separator for Unix systems (<tt>\n</tt>).
*/
UNIX("\n"),
/**
* Line separator for Windows systems (<code>\r\n</code>).
* Line separator for Windows systems (<tt>\r\n</tt>).
*/
WINDOWS("\r\n"),
/**
* Line separator for Macintosh systems (<code>\r</code>).
* Line separator for Macintosh systems (<tt>\r</tt>).
*/
MAC("\r");

View File

@@ -20,15 +20,15 @@ package io.github.swagger2markup.config;
public enum LineSeparator {
/**
* Line separator for Unix systems (<code>\n</code>).
* Line separator for Unix systems (<tt>\n</tt>).
*/
UNIX("\n"),
/**
* Line separator for Windows systems (<code>\r\n</code>).
* Line separator for Windows systems (<tt>\r\n</tt>).
*/
WINDOWS("\r\n"),
/**
* Line separator for Macintosh systems (<code>\r</code>).
* Line separator for Macintosh systems (<tt>\r</tt>).
*/
MAC("\r");