Skip to content

Commit 2dd08db

Browse files
author
JW Wesson
committed
change docs
1 parent e2d7c62 commit 2dd08db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/textkernel/tx/TxClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,7 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(
16671667
/**
16681668
* Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.
16691669
* @param professionCodeIds The code IDs of the professions to suggest skills for.
1670-
* @param limit The maximum amount of suggested skills returned. The maximum amount allowed is 10. If not sure what value should be, provide 10 as default limit.
1670+
* @param limit The maximum amount of suggested skills returned. If not sure what value should be, provide 10 as default limit.
16711671
* @param outputLanguage The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported <a href="https://developer.textkernel.com/tx-platform/v10/data-enrichment/overview/#skills-languages">ISO code</a>
16721672
* @return The API response body
16731673
* @throws TxException Thrown when an API error occurs

src/main/java/com/textkernel/tx/models/api/dataenrichment/ontology/request/SuggestSkillsFromProfessionsRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public class SuggestSkillsFromProfessionsRequest {
1212
/** The profession code IDs from the <a href="https://developer.textkernel.com/tx-platform/v10/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> for which the service should return related skills. The list can contain up to 10 profession codes. */
1313
public List<Integer> ProfessionCodeIds;
14-
/** The maximum amount of suggested skills returned. If not specified this parameter defaults to 10. This limit cannot exceed 10. */
14+
/** The maximum amount of suggested skills returned. If not specified this parameter defaults to 10. */
1515
public int Limit = 10;
1616
/** The language to use for the returned descriptions. */
1717
public String OutputLanguage;

0 commit comments

Comments
 (0)