Skip to content

Commit

Permalink
Fix typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tibetiroka committed Mar 2, 2024
1 parent 238a128 commit 6a88445
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version 1.0:
Version 1.0.0:
- Added new check `licenseDeclaredAfterExplanation`: when enabled, licenses that are explained every time they are used cannot be declared in stand-alone license stanzas
- Decoupled a new check `duplicateFilePattern` from the `redundantFilePattern` check (still under the `copyrightFilePatternGenerality` check)
- Various new checks were added for existing errors, making the `quirks` preset more lenient
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/tibetiroka/deblint/DataField.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public DataField(String name, String data, FieldType type) {
}

/**
* Parses the next data field, removing its lines from the input list. Please note that this method handles {@link FieldType#MULTILINE multiline} and {@link FieldType#FOLDED folded} fields the same; multiline fields can be converted to folded fields later using {@link #changeType(FieldType)}.
* Parses the next data field, removing its lines from the input list. Please note that this method handles {@link FieldType#MULTILINE multiline} and {@link FieldType#FOLDED folded} fields the same; multiline fields can be converted to folded fields later using {@link #changeType(FieldType, boolean)}.
*
* @param lines The data field and any content following it in the control file
* @return The data field, or null if it could not be parsed
Expand Down

0 comments on commit 6a88445

Please sign in to comment.