Skip to content

Commit

Permalink
Respect scaladoc precedence between note and example tags
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed Nov 19, 2016
1 parent 03f88d4 commit 8514ec4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2478,14 +2478,14 @@
<additionalparam>-Xdoclint:all -Xdoclint:-missing</additionalparam>
<tags>
<tag>
<name>note</name>
<name>example</name>
<placement>a</placement>
<head>Note:</head>
<head>Example:</head>
</tag>
<tag>
<name>example</name>
<name>note</name>
<placement>a</placement>
<head>Example:</head>
<head>Note:</head>
</tag>
<tag>
<name>group</name>
Expand Down
2 changes: 1 addition & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -742,8 +742,8 @@ object Unidoc {
"-windowtitle", "Spark " + version.value.replaceAll("-SNAPSHOT", "") + " JavaDoc",
"-public",
"-noqualifier", "java.lang",
"-tag", """note:a:Note\:""",
"-tag", """example:a:Example\:""",
"-tag", """note:a:Note\:""",
"-tag", "group:X",
"-tag", "tparam:X"
),
Expand Down

0 comments on commit 8514ec4

Please sign in to comment.