-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
Update data_collector.rst #4633
Conversation
Simple change...would have saved me several hours of guessing.
good one, 👍 |
@@ -151,7 +151,7 @@ All blocks have access to the ``collector`` object. | |||
echo base64_encode(file_get_contents($_SERVER['argv'][1])); | |||
|
|||
To enable the template, add a ``template`` attribute to the ``data_collector`` | |||
tag in your configuration. For example, assuming your template is in some | |||
tag in your configuration. Make sure the ``id`` attribute is the same string you used for the getName() method. For example, assuming your template is in some |
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.
getName()
should also be enclosed by literals (double backticks). And can you please wrap lines after the first word that crosses the 72nd character? Thanks. :)
Thank you @seangallavan. Looks good beside my minor comment. |
Changes made. Thanks.
@@ -151,7 +151,8 @@ All blocks have access to the ``collector`` object. | |||
echo base64_encode(file_get_contents($_SERVER['argv'][1])); | |||
|
|||
To enable the template, add a ``template`` attribute to the ``data_collector`` | |||
tag in your configuration. For example, assuming your template is in some | |||
tag in your configuration. Make sure the ``id`` attribute is the same string you used | |||
for the ``getName()`` method. For example, assuming your template is in some |
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.
could you please remove one of the two spaces before "For example"?
Updated. Thanks for your patience.
Thanks for the update @seangallavan. Unfortunately, we are not notified when new commits are pushed to a pull request. Will you be able to rebase your changes so that they can be applied cleanly? |
I've done the rebase in #5280. Thanks for starting this @seangallavan ! |
Simple change...would have saved me several hours of guessing.