You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2020/09/16 18:51:38 UTC

[commons-bcel] 02/02: Fix typo

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-bcel.git

commit fead9f082a68b00bf99bdc053dd7973921ae672f
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Sep 16 17:47:06 2020 +0100

    Fix typo
---
 src/main/java/org/apache/bcel/classfile/JavaClass.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/bcel/classfile/JavaClass.java b/src/main/java/org/apache/bcel/classfile/JavaClass.java
index 927015d..9a07272 100644
--- a/src/main/java/org/apache/bcel/classfile/JavaClass.java
+++ b/src/main/java/org/apache/bcel/classfile/JavaClass.java
@@ -41,7 +41,7 @@ import org.apache.bcel.util.SyntheticRepository;
  * fields, methods and commands contained in a Java .class file.
  * See <a href="https://docs.oracle.com/javase/specs/">JVM specification</a> for details.
  * The intent of this class is to represent a parsed or otherwise existing
- * class file.  Those interested in programatically generating classes
+ * class file.  Those interested in programmatically generating classes
  * should see the <a href="../generic/ClassGen.html">ClassGen</a> class.
 
  * @see org.apache.bcel.generic.ClassGen