Commit f117a955 by Predrag Gruevski Committed by finswimmer

Add missing quote to dependency-specification.md

I think this should also fix the confusing syntax highlighting at https://python-poetry.org/docs/dependency-specification/#expanded-dependency-specification-syntax where the `platform_python_implementation == 'CPython'` string literal edited here is not currently highlighted as a literal string value.
parent b19873ae
...@@ -189,7 +189,7 @@ An example where this might be useful is the following: ...@@ -189,7 +189,7 @@ An example where this might be useful is the following:
```toml ```toml
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
black = {version = "19.10b0", allow-prereleases = true, python = "^3.6", markers = "platform_python_implementation == 'CPython'} black = {version = "19.10b0", allow-prereleases = true, python = "^3.6", markers = "platform_python_implementation == 'CPython'"}
``` ```
As a single line, this is a lot to digest. To make this a little bit easier to As a single line, this is a lot to digest. To make this a little bit easier to
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment