aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel <78592838+Gabriel-Darbord@users.noreply.github.com>2024-02-17 11:16:33 +0100
committerGitHub <noreply@github.com>2024-02-17 11:16:33 +0100
commit8067986775c3ae9e83e23785adfdd9fa9d14a2e5 (patch)
tree7e229277263e4c0a7b40b7bb59e10bd0c03ecb97
parent971af84dbf29bf7bfecc0279cc6eea99cd7e2f6f (diff)
downloadjacoco-8067986775c3ae9e83e23785adfdd9fa9d14a2e5.tar.gz
Fix typos (#1579)
-rw-r--r--org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java2
-rw-r--r--org.jacoco.core/src/org/jacoco/core/analysis/ICoverageNode.java2
-rw-r--r--org.jacoco.doc/docroot/doc/agent.html2
-rw-r--r--org.jacoco.doc/docroot/doc/flow.html6
-rw-r--r--org.jacoco.doc/docroot/index.html2
-rw-r--r--org.jacoco.report/src/org/jacoco/report/IReportGroupVisitor.java2
6 files changed, 8 insertions, 8 deletions
diff --git a/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java b/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
index f45b3250..2122c482 100644
--- a/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
+++ b/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
@@ -31,7 +31,7 @@ public interface IClassCoverage extends ISourceNode {
long getId();
/**
- * Returns if the the analyzed class does match the execution data provided.
+ * Returns if the analyzed class does match the execution data provided.
* More precisely if execution data is available for a class with the same
* qualified name but with a different class id.
*
diff --git a/org.jacoco.core/src/org/jacoco/core/analysis/ICoverageNode.java b/org.jacoco.core/src/org/jacoco/core/analysis/ICoverageNode.java
index 3f8aa4ac..b292390a 100644
--- a/org.jacoco.core/src/org/jacoco/core/analysis/ICoverageNode.java
+++ b/org.jacoco.core/src/org/jacoco/core/analysis/ICoverageNode.java
@@ -124,7 +124,7 @@ public interface ICoverageNode {
ICounter getClassCounter();
/**
- * Generic access to the the counters.
+ * Generic access to the counters.
*
* @param entity
* entity we're we want to have the counter for
diff --git a/org.jacoco.doc/docroot/doc/agent.html b/org.jacoco.doc/docroot/doc/agent.html
index 719a843a..afd230a8 100644
--- a/org.jacoco.doc/docroot/doc/agent.html
+++ b/org.jacoco.doc/docroot/doc/agent.html
@@ -28,7 +28,7 @@
<p class="hint">
If you use the <a href="ant.html">JaCoCo Ant tasks</a> or
<a href="maven.html">JaCoCo Maven plug-in</a> you don't have to care about the
- agent and its options directly. This is transparently handled by the them.
+ agent and its options directly. This is transparently handled by them.
</p>
<p>
diff --git a/org.jacoco.doc/docroot/doc/flow.html b/org.jacoco.doc/docroot/doc/flow.html
index aaa4a748..c50412b6 100644
--- a/org.jacoco.doc/docroot/doc/flow.html
+++ b/org.jacoco.doc/docroot/doc/flow.html
@@ -144,7 +144,7 @@ public static example()V
<p>
The current JaCoCo implementation ignores edges caused by implicit exceptions
- and the the method entry. This means we consider SEQUENCE, JUMP, EXIT.
+ and the method entry. This means we consider SEQUENCE, JUMP, EXIT.
</p>
@@ -253,7 +253,7 @@ public static example()V
Now let's see how this rules apply to the example snippet above. We see that
<code>INVOKE d()</code> instruction is the only node with more than one
incoming edge. So we need to place probes on those edges and another probe on
- the only exit node. The result is shown the the right box of the diagram
+ the only exit node. The result is shown the right box of the diagram
above.
</p>
@@ -264,7 +264,7 @@ public static example()V
exceptions thrown for example from invoked methods. If the control flow
between two probes is interrupted by a exception not explicitly created with
a <code>throw</code> statement all instruction in between are considered as
- not covered. This leads to unexpected results especially when the the block of
+ not covered. This leads to unexpected results especially when the block of
instructions spans multiple lines of source code.
</p>
diff --git a/org.jacoco.doc/docroot/index.html b/org.jacoco.doc/docroot/index.html
index 320d4cca..a99ac425 100644
--- a/org.jacoco.doc/docroot/index.html
+++ b/org.jacoco.doc/docroot/index.html
@@ -101,7 +101,7 @@
</table>
<p>
- All libraries as well as the the JaCoCo <a href="doc/maven.html">Maven plug-in</a>
+ All libraries as well as the JaCoCo <a href="doc/maven.html">Maven plug-in</a>
are also available from the Maven <a href="doc/repo.html">repository</a>.
</p>
diff --git a/org.jacoco.report/src/org/jacoco/report/IReportGroupVisitor.java b/org.jacoco.report/src/org/jacoco/report/IReportGroupVisitor.java
index 2c10e802..50feda3c 100644
--- a/org.jacoco.report/src/org/jacoco/report/IReportGroupVisitor.java
+++ b/org.jacoco.report/src/org/jacoco/report/IReportGroupVisitor.java
@@ -37,7 +37,7 @@ import org.jacoco.core.analysis.IBundleCoverage;
public interface IReportGroupVisitor {
/**
- * Called to add a bundle to the the report.
+ * Called to add a bundle to the report.
*
* @param bundle
* a bundle to include in the report