We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When you do this:
$version: "2" namespace demo structure Hello { @required /// totally a string s: String /// a number! i: Integer }
The result will end up concatenating both doc strings and putting them on i:
i
{ "smithy": "2.0", "shapes": { "demo#Hello": { "type": "structure", "members": { "s": { "target": "smithy.api#String", "traits": { "smithy.api#required": {} } }, "i": { "target": "smithy.api#Integer", "traits": { "smithy.api#documentation": "totally a string\na number!" } } } } } }
whereas if i has no /// on it, you'll rightfully get a warning about the wrong position:
///
I think the actual behavior in the original snippet should be:
totally a string
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When you do this:
The result will end up concatenating both doc strings and putting them on
i
:whereas if
i
has no///
on it, you'll rightfully get a warning about the wrong position:I think the actual behavior in the original snippet should be:
totally a string
completely)The text was updated successfully, but these errors were encountered: