Skip to content

Commit 6c1a2d1

Browse files
committed
more string escaping tweaks per JuliaLang/julia#22800
1 parent e16e4a0 commit 6c1a2d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/OpsWorks.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -3824,7 +3824,7 @@ The layer name, which is used by the console.
38243824
38253825
38263826
## `Shortname = ::String`
3827-
For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\\A[a-z0-9\\-\\_\.]+\\Z/.
3827+
For custom layers only, use this parameter to specify the layer's short name, which is used internally by AWS OpsWorks Stacks and by Chef. The short name is also used as the name for the directory where your app files are installed. It can have a maximum of 200 characters and must be in the following format: /\\A[a-z0-9\\-\\_\\.]+\\Z/.
38283828
38293829
The built-in layers' short names are defined by AWS OpsWorks Stacks. For more information, see the [Layer Reference](http://docs.aws.amazon.com/opsworks/latest/userguide/layers.html)
38303830

src/S3.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -5012,7 +5012,7 @@ The following example uploads an object. The request specifies optional object t
50125012
Input:
50135013
```
50145014
[
5015-
"Body" => "c:\HappyFace.jpg",
5015+
"Body" => "c:\\HappyFace.jpg",
50165016
"Bucket" => "examplebucket",
50175017
"Key" => "HappyFace.jpg",
50185018
"Tagging" => "key1=value1&key2=value2"

0 commit comments

Comments
 (0)