Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove alpha label from context parameter in README #52

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DeepL/TextTranslateOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public TextTranslateOptions(GlossaryInfo glossary) : this() {
}

/// <summary>
/// Specifies additional context to influence translations, that is not translated itself. Note this is an **alpha
/// feature**: it may be deprecated at any time, or incur charges if it becomes generally available.
/// Specifies additional context to influence translations, that is not translated itself.
/// Characters in the `context` parameter are not counted toward billing.
/// See the API documentation for more information and example usage.
/// </summary>
public string? Context { get; set; }
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ foreach (var formality in new[] { Formality.Less, Formality.More }) {
- `GlossaryId`: specifies a glossary to use with translation, as a string
containing the glossary ID.
- `Context`: specifies additional context to influence translations, that is not
translated itself. Note this is an **alpha feature**: it may be deprecated at
any time, or incur charges if it becomes generally available.
translated itself. Characters in the `context` parameter are not counted toward billing.
See the [API documentation][api-docs-context-param] for more information and
example usage.
- `TagHandling`: type of tags to parse before translation, options are
Expand Down
Loading