-
Notifications
You must be signed in to change notification settings - Fork 41
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
Escape the brackets in sanction and quarantine docs #1974
Conversation
WalkthroughThe recent updates focus on enhancing the formatting of event specification files, ensuring better alignment and clarity in attribute values. These changes aim to improve the readability and consistency of event representations without altering their functionality. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- x/quarantine/spec/04_events.md (2 hunks)
- x/sanction/spec/04_events.md (2 hunks)
Additional Context Used
LanguageTool (10)
x/quarantine/spec/04_events.md (5)
Near line 16: Loose punctuation mark.
Context: ...n account opts into quarantine.@Type
:/cosmos.quarantine.v1beta1.EventOptIn
...
Near line 26: Loose punctuation mark.
Context: ...account opts out of quarantine.@Type
: `/cosmos.quarantine.v1beta1.EventOptOut...
Near line 34: It seems likely that a singular genitive (’s) apostrophe is missing.
Context: ...x/bank
module will be the quarantined funds holder account instead of the intended ...
Near line 37: Loose punctuation mark.
Context: ...ollowing event is also emitted.@Type
: `/cosmos.quarantine.v1beta1.EventFundsQ...
Near line 48: Loose punctuation mark.
Context: ... originally intended recipient.@Type
: `/cosmos.quarantine.v1beta1.EventFundsR...x/sanction/spec/04_events.md (5)
Near line 17: Loose punctuation mark.
Context: ... when an account is sanctioned.@Type
: `/cosmos.sanction.v1beta1.EventAddressS...
Near line 27: Loose punctuation mark.
Context: ...hen an account is unsanctioned.@Type
: `/cosmos.sanction.v1beta1.EventAddressU...
Near line 37: Loose punctuation mark.
Context: ...nction is placed on an account.@Type
: `/cosmos.sanction.v1beta1.EventTempAddr...
Near line 47: Loose punctuation mark.
Context: ...nction is placed on an account.@Type
: `/cosmos.sanction.v1beta1.EventTempAddr...
Near line 57: Loose punctuation mark.
Context: ...nmodule's params are updated.
@type:
/cosmos.sanction.v1beta1.EventParamsUp...
Additional comments not posted (8)
x/quarantine/spec/04_events.md (4)
18-20
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
28-30
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
39-42
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
50-53
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
x/sanction/spec/04_events.md (4)
19-21
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
29-31
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
39-41
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
49-51
: Escape curly braces in attribute values.The curly braces around the attribute values have been correctly escaped to prevent rendering issues in markdown.
I don't have auth to merge these after they are approved if someone is willing to merge that would be appreciated. |
…ovenance into aj/docs-escape-brackets
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (2)
- x/quarantine/spec/04_events.md (2 hunks)
- x/sanction/spec/04_events.md (1 hunks)
Additional Context Used
LanguageTool (9)
x/quarantine/spec/04_events.md (4)
Near line 15: Loose punctuation mark.
Context: ...n account opts into quarantine.@Type
:/cosmos.quarantine.v1beta1.EventOptIn
...
Near line 25: Loose punctuation mark.
Context: ...account opts out of quarantine.@Type
: `/cosmos.quarantine.v1beta1.EventOptOut...
Near line 36: Loose punctuation mark.
Context: ...ollowing event is also emitted.@Type
: `/cosmos.quarantine.v1beta1.EventFundsQ...
Near line 47: Loose punctuation mark.
Context: ... originally intended recipient.@Type
: `/cosmos.quarantine.v1beta1.EventFundsR...x/sanction/spec/04_events.md (5)
Near line 16: Loose punctuation mark.
Context: ... when an account is sanctioned.@Type
: `/cosmos.sanction.v1beta1.EventAddressS...
Near line 26: Loose punctuation mark.
Context: ...hen an account is unsanctioned.@Type
: `/cosmos.sanction.v1beta1.EventAddressU...
Near line 36: Loose punctuation mark.
Context: ...nction is placed on an account.@Type
: `/cosmos.sanction.v1beta1.EventTempAddr...
Near line 46: Loose punctuation mark.
Context: ...nction is placed on an account.@Type
: `/cosmos.sanction.v1beta1.EventTempAddr...
Near line 56: Loose punctuation mark.
Context: ...nmodule's params are updated.
@type:
/cosmos.sanction.v1beta1.EventParamsUp...
Additional comments not posted (8)
x/quarantine/spec/04_events.md (4)
17-19
: The escaping of curly braces in the attribute values is correctly implemented.
27-29
: The escaping of curly braces in the attribute values is correctly implemented.
38-41
: The escaping of curly braces in the attribute values is correctly implemented.
49-52
: The escaping of curly braces in the attribute values is correctly implemented.x/sanction/spec/04_events.md (4)
18-20
: The escaping of curly braces in the attribute values is correctly implemented.
28-30
: The escaping of curly braces in the attribute values is correctly implemented.
38-40
: The escaping of curly braces in the attribute values is correctly implemented.
48-50
: The escaping of curly braces in the attribute values is correctly implemented.
Looks like there's an unsigned commit: |
superseded by #2007 |
The non escaped brackets are breaking the dev-portal. Need to have them escaped for the docusaurus renderer
Summary by CodeRabbit