Fix typo in C# string interpolation in TYPE_STRING doc#119133
Merged
Repiteo merged 1 commit intogodotengine:masterfrom May 1, 2026
Merged
Fix typo in C# string interpolation in TYPE_STRING doc#119133Repiteo merged 1 commit intogodotengine:masterfrom
TYPE_STRING doc#119133Repiteo merged 1 commit intogodotengine:masterfrom
Conversation
raulsntos
reviewed
May 1, 2026
Member
raulsntos
left a comment
There was a problem hiding this comment.
Thanks for catching this typo, the change looks great.
The .po files in the doc/translations/ folder are auto-generated when syncing translations from Weblate, and should not be manually changed.
6cb1ba9 to
79f450f
Compare
Contributor
Author
@raulsntos fixed! |
raulsntos
approved these changes
May 1, 2026
TYPE_STRING doc
Contributor
|
Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Noticed this minor typo in the docs when writing custom property hints for arrays in C#. One of the interpolated values is missing the format specifier after the colon. Likely a basic typo, as every other
elemTypeis correctly formatted.(Context for those unfamiliar with C#, a colon after an interped value specifies a format, and
Drepresents decimals or int values. See https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings)But just to be sure, here's what it looks like if we use the current line without the fix:
After: