Skip to content
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

Remove stray _ typo #1385

Merged
merged 2 commits into from
Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ case object UsingJavaPropsDirectiveHandler extends UsingDirectiveHandler {
def description = "Add Java properties"
def usage = "//> using java-prop|javaProp _key=val_"
override def usageMd =
"""`//> using javaProp_ `_key=value_
|`//> using javaProp_ `_key_""".stripMargin
"""`//> using javaProp `_key=value_
|`//> using javaProp `_key_""".stripMargin
override def examples = Seq(
"//> using javaProp \"foo1=bar\", \"foo2\""
)
Expand Down
4 changes: 2 additions & 2 deletions website/docs/reference/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ Add Java options

Add Java properties

`//> using javaProp_ `_key=value_
`//> using javaProp_ `_key_
`//> using javaProp `_key=value_
lwronski marked this conversation as resolved.
Show resolved Hide resolved
`//> using javaProp `_key_

#### Examples
`//> using javaProp "foo1=bar", "foo2"`
Expand Down
4 changes: 2 additions & 2 deletions website/docs/reference/scala-command/directives.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ Add Java options

Add Java properties

`//> using javaProp_ `_key=value_
`//> using javaProp_ `_key_
`//> using javaProp `_key=value_
`//> using javaProp `_key_

#### Examples
`//> using javaProp "foo1=bar", "foo2"`
Expand Down