-
Notifications
You must be signed in to change notification settings - Fork 641
[ISSUE #4185] Correct eventmesh.properties comment grammar mistake #4187
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
Conversation
|
|
||
| ## Source | ||
| A source connector obtains data from an underlying data producer and delivers it to targets, after original data has been transformed into CloudEvents. It doesn't limit the way how a source retrieves data. (e.g., A source may pull data from a message queue or act as an HTTP server waiting for data sent to it). | ||
| A source connector obtains data from an underlying data producer, and delivers it to targets after original data has been transformed into CloudEvents. It doesn't limit the way how a source retrieves data. (e.g., A source may pull data from a message queue or act as an HTTP server waiting for data sent to it). |
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.
I have also made modifications to the eventmesh-connectors/README.md file to correct the same type of mistake. The correct sequence of the data processing steps should be "obtains data from data producer" first, followed by "transforms it into CloudEvents," and finally "delivers it to targets". However, the original text conveys a misleading meaning, suggesting that the sequence is "transforms it into CloudEvents," then "obtains data from data producer" and "delivers it to targets."
Codecov Report
@@ Coverage Diff @@
## master #4187 +/- ##
============================================
- Coverage 16.93% 16.92% -0.01%
+ Complexity 1413 1412 -1
============================================
Files 589 589
Lines 25789 25789
Branches 2397 2397
============================================
- Hits 4368 4366 -2
- Misses 20985 20986 +1
- Partials 436 437 +1 see 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
mxsm
left a comment
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.
LGTM
…ake (apache#4187) * doc: Correct eventmesh.properties comment grammar mistake * doc: Correct README.md grammar sequence mistake
Fixes #4185.
Motivation
According to the original Chinese comments in the git commit history, the existing English comments are misleading. The English translation does not match the meaning of the original Chinese text, which affects understanding.
Modifications
Correct eventmesh.properties comment grammar mistake.
Documentation