Skip to content

Commit 46998fc

Browse files
authored
Merge pull request #69 from watson-developer-cloud/hotfix-missingDocumentation
Hotfix missing documentation
2 parents 8a6517b + ae7373d commit 46998fc

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
COVERALLS_REPO_TOKEN:
99
secure: Dnsrk2n+VNE4swcbTLXpfnHwUwTWT8TqMiMkthU6mq/ohNq9dA2rrSA6kdLDBKME
1010
GH_TOKEN:
11-
secure: ahCkoZZovsAAEZz8fc09QDIH1VMyE1e946JiMb3by8eyp1pacKDq/S7EI//S2lqB
11+
secure: J0LjUlYl+lGJMLBcOgVF1m1I07nyr+8yFOMaNBA23RGLMJKvYnRlhmGWXp07ejgu
1212
install:
1313
- cmd: >-
1414
rm -rf packages
@@ -51,7 +51,7 @@ after_build:
5151
.\packages\Doxygen.1.8.13\tools\doxygen.exe Doxyfile
5252
git config --global user.email "[email protected]"
5353
git config --global user.name "Watson Github Bot"
54-
git clone --quiet --branch=gh-pages https://$env:[email protected]:watson-developer-cloud/dotnet-standard-sdk.git gh-pages
54+
git clone --quiet --branch=gh-pages https://$env:[email protected]/watson-developer-cloud/dotnet-standard-sdk.git gh-pages
5555
5656
If(Test-Path -Path gh-pages\docs\$branchName)
5757
{

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)