This is an automated email from the ASF dual-hosted git repository. kezhenxu94 pushed a commit to branch kezhenxu94-patch-1 in repository https://gitbox.apache.org/repos/asf/skywalking-python.git
commit 2eb33ddeb4c0f8d028ea8fca224dc6886032503d Author: kezhenxu94 <[email protected]> AuthorDate: Tue Jan 18 13:27:10 2022 +0800 Add missing ending quote --- docs/en/setup/Intrusive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/setup/Intrusive.md b/docs/en/setup/Intrusive.md index 15ce5f6..2b4b3cc 100644 --- a/docs/en/setup/Intrusive.md +++ b/docs/en/setup/Intrusive.md @@ -46,7 +46,7 @@ Finally, if you want to use Kafka protocol to report data, configure `kafka_boot (or environment variable `SW_KAFKA_REPORTER_BOOTSTRAP_SERVERS`) to `kafka-brokers`, such as `127.0.0.1:9200`: -> Remember you should install `skywalking-python` with extra requires `kafka`, `pip install "apache-skywalking[kafka]`. +> Remember you should install `skywalking-python` with extra requires `kafka`, `pip install "apache-skywalking[kafka]"`. ```python from skywalking import agent, config @@ -58,4 +58,4 @@ agent.start() Alternatively, you can also pass the configurations via environment variables (such as `SW_AGENT_NAME`, `SW_AGENT_COLLECTOR_BACKEND_SERVICES`, etc.) so that you don't need to call `config.init`. -All supported environment variables can be found in the [Environment Variables List](EnvVars.md). \ No newline at end of file +All supported environment variables can be found in the [Environment Variables List](EnvVars.md).
