@@ -379,8 +379,8 @@ public static Agent stringToAgent(String spdx2personOrgString, CreationInfo crea
379379 SpdxConstantsV3 .CORE_ORGANIZATION , creationInfo .getCopyManager (), true , creationInfo .getIdPrefix ());
380380 organization .setCreationInfo (creationInfo );
381381 if (matcher .groupCount () > 1 ) {
382- String origanizationName = matcher .group (2 ).trim ();
383- organization .setName (origanizationName );
382+ String organizationName = matcher .group (2 ).trim ();
383+ organization .setName (organizationName );
384384 } else {
385385 logger .warn ("Missing organization name" );
386386 organization .setName ("[MISSING]" );
@@ -940,7 +940,7 @@ public LicenseAddition convertAndStore(org.spdx.library.model.v2.license.License
940940
941941 /**
942942 * Convert and add properties from the fromException to the toAddition
943- * @param fromException SPDX spec verion 2 LicenseException to copy properties from
943+ * @param fromException SPDX spec version 2 LicenseException to copy properties from
944944 * @param toAddition SPDX spec version 3 LicenseAddition to copy properties to
945945 * @throws InvalidSPDXAnalysisException on any errors converting
946946 */
@@ -992,7 +992,7 @@ public ListedLicenseException convertAndStore(org.spdx.library.model.v2.license.
992992 }
993993
994994 /**
995- * Converts an SPDX spec version 2 SPDX AnyLicenseIfno to an SPDX spec version 3 LicenseExpression
995+ * Converts an SPDX spec version 2 SPDX AnyLicenseInfo to an SPDX spec version 3 LicenseExpression
996996 * @param fromLicense an SPDX spec version 2 AnyLicenseInfo
997997 * @return an SPDX spec version 3 LicenseExpression
998998 * @throws InvalidSPDXAnalysisException on any errors converting
@@ -1027,9 +1027,9 @@ public LicenseExpression convertToLicenseExpression(org.spdx.library.model.v2.li
10271027 }
10281028
10291029 /**
1030- * Converts an SPDX spec version 2 SPDX AnyLicenseIfno to an SPDX spec version 3 SPDX AnyLicenseIfno and store the result
1030+ * Converts an SPDX spec version 2 SPDX AnyLicenseInfo to an SPDX spec version 3 SPDX AnyLicenseInfo and store the result
10311031 * @param fromLicense an SPDX spec version 2 AnyLicenseInfo
1032- * @return an SPDX spec version 3 AnyLicenseIfno
1032+ * @return an SPDX spec version 3 AnyLicenseInfo
10331033 * @throws InvalidSPDXAnalysisException on any errors converting
10341034 */
10351035 public AnyLicenseInfo convertAndStore (org .spdx .library .model .v2 .license .AnyLicenseInfo fromLicense ) throws InvalidSPDXAnalysisException {
@@ -1201,7 +1201,7 @@ private void convertAndAddFileType(org.spdx.library.model.v2.enumerations.FileTy
12011201 }
12021202
12031203 /**
1204- * Adds a Sotfware Purpose to a SoftwareArtifact. If the primaryPurpose is already used, add as an additionalPurpose
1204+ * Adds a Software Purpose to a SoftwareArtifact. If the primaryPurpose is already used, add as an additionalPurpose
12051205 * @param purpose purpose to add
12061206 * @param artifact artifact to add the purpose to
12071207 * @throws InvalidSPDXAnalysisException on any error in conversion
0 commit comments