Skip to content

Commit

Permalink
Merge pull request #1146 from davidburstrom/davidburstrom-definition
Browse files Browse the repository at this point in the history
Fix spelling error in ComputClassWriter
  • Loading branch information
hcoles authored Jan 20, 2023
2 parents 5e0fd2d + cef7302 commit 598e5f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ private boolean typeImplements(String type, ClassReader info, final String itf)
private ClassReader typeInfo(final String type) {
final Optional<byte[]> maybeBytes = this.bytes.getBytes(type);
if (!maybeBytes.isPresent()) {
throw new PitError("Could not find class defintiion for " + type);
throw new PitError("Could not find class definition for " + type);
}
return new ClassReader(maybeBytes.get());
}
Expand Down

0 comments on commit 598e5f1

Please sign in to comment.