aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core/src/org/jacoco/core/internal
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 /org.jacoco.core/src/org/jacoco/core/internal
parentb7efb625bbd13b92f2c74457c9abfb5edeaa7e43 (diff)
downloadjacoco-fc28f2e8dacaa9c1c97ac60a0a775bae90c92287.tar.gz
Fix headers in javadocs (#890)
Diffstat (limited to 'org.jacoco.core/src/org/jacoco/core/internal')
-rw-r--r--org.jacoco.core/src/org/jacoco/core/internal/analysis/Instruction.java4
1 files changed, 2 insertions, 2 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: