aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Mandrikov <138671+Godin@users.noreply.github.com>2019-06-04 15:18:47 +0200
committerGitHub <noreply@github.com>2019-06-04 15:18:47 +0200
commitfc28f2e8dacaa9c1c97ac60a0a775bae90c92287 (patch)
treea531565693bc247fe301f19037d0eb27dfe299a7
parentb7efb625bbd13b92f2c74457c9abfb5edeaa7e43 (diff)
downloadjacoco-fc28f2e8dacaa9c1c97ac60a0a775bae90c92287.tar.gz
Fix headers in javadocs (#890)
-rw-r--r--org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java4
-rw-r--r--org.jacoco.doc/javadoc/overview.html6
2 files changed, 5 insertions, 5 deletions
diff --git a/org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java b/org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java
index c5a1aaae..c6db24c9 100644
--- a/org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java
+++ b/org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java
@@ -23,7 +23,7 @@ import org.jacoco.core.analysis.ICounter;
* case of a simple sequence of instructions (by convention branch 0). Instances
* of this class are used in two steps:
*
- * <h3>Step 1: Building the CFG</h3>
+ * <h2>Step 1: Building the CFG</h2>
*
* For each bytecode instruction of a method a {@link Instruction} instance is
* created. In correspondence with the CFG these instances are linked with each
@@ -32,7 +32,7 @@ import org.jacoco.core.analysis.ICounter;
* flow ({@link #addBranch(boolean, int)}) or indirectly propagated along the
* CFG edges ({@link #addBranch(Instruction, int)}).
*
- * <h3>Step 2: Querying the Coverage Status</h3>
+ * <h2>Step 2: Querying the Coverage Status</h2>
*
* After all instructions have been created and linked each instruction knows
* its execution status and can be queried with:
diff --git a/org.jacoco.doc/javadoc/overview.html b/org.jacoco.doc/javadoc/overview.html
index 4c5db610..3d3245b4 100644
--- a/org.jacoco.doc/javadoc/overview.html
+++ b/org.jacoco.doc/javadoc/overview.html
@@ -8,7 +8,7 @@
regular JARs in your classpath.
</p>
-<h2>Bundle org.jacoco.core</h2>
+<h1>Bundle org.jacoco.core</h1>
<p>
The core bundle implements the code coverage technology itself. It provides
@@ -21,14 +21,14 @@
<li>analyzing coverage data.</li>
</ul>
-<h2>Bundle org.jacoco.agent</h2>
+<h1>Bundle org.jacoco.agent</h1>
<p>
Provides the runtime Java agent (JAR file) as a resource.
</p>
-<h2>Bundle org.jacoco.report</h2>
+<h1>Bundle org.jacoco.report</h1>
<p>
APIs and implementation to create coverage reports in several formats.