Skip to content

Commit c843f4c

Browse files
committed
fixed errors in inline documentation
1 parent 8a6517b commit c843f4c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/IBM.WatsonDeveloperCloud.LanguageTranslator/v2/ILanguageTranslatorService.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public interface ILanguageTranslatorService
2626
/// <summary>
2727
/// Lists available models for the Language translator service with option to filter by source or by target language.
2828
/// </summary>
29-
/// <param name="isDefault">Valid values are leaving it unset, 'true' and 'false'. When 'true', it filters models to return the default model or models. When 'false' it returns the non-default model or models. If not set, all models (default and non-default) return.</param>
29+
/// <param name="_isDefault">Valid values are leaving it unset, 'true' and 'false'. When 'true', it filters models to return the default model or models. When 'false' it returns the non-default model or models. If not set, all models (default and non-default) return.</param>
3030
/// <param name="_source">Define with target. Filters models by source language.</param>
3131
/// <param name="_target">Define with source. Filters models by target language.</param>
3232
/// <returns></returns>
@@ -36,16 +36,14 @@ public interface ILanguageTranslatorService
3636
/// Uploads a TMX glossary file on top of a domain to customize a translation model.
3737
/// Depending on the size of the file, training can range from minutes for a glossary to several hours for a large parallel corpus. Glossary files must be less than 10 MB. The cumulative file size of all uploaded glossary and corpus files is limited to 250 MB.
3838
/// </summary>
39-
/// <param name="baseModelId">The base model to use to create the custom model.</param>
40-
/// <param name="name">The name of the custom model.</param>
41-
/// <param name="file">The file data used to create the custom model.</param>
39+
/// <param name="_options">An object containing arguments used to create the custom model.</param>
4240
/// <returns></returns>
4341
CustomModels CreateModel(CreateModelOptions _options);
4442

4543
/// <summary>
4644
/// Deletes trained translation models.
4745
/// </summary>
48-
/// <param name="modelId">The model identifier.</param>
46+
/// <param name="_modelId">The model identifier.</param>
4947
/// <returns></returns>
5048
DeleteModels DeleteModel(string _modelId);
5149

0 commit comments

Comments
 (0)