Skip to content

Commit 535d150

Browse files
DOCSP-10799 fix for errors in out doc examples (#30)
1 parent ab13e09 commit 535d150

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

source/includes/changelog/data-lake-2020.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
05 May 2020 Release
3939
~~~~~~~~~~~~~~~~~~~
4040

41-
- Generates :doc:`Storage Configs </config/config-data-lake#generate-data-lake-configuration>`
41+
- Generates :ref:`Storage Configs <datalake-storagegenconfig>`
4242
when |service| creates a {+data-lake+}.
4343
- Adds support for :pipeline:`$out` to |s3|.
4444
- Updates support for `Apache Parquet <https://parquet.apache.org/>`__

source/includes/steps-data-lake-deploy.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ content: |
1818
:figwidth: 715px
1919
:alt: Screenshot of the Data Lake Overview.
2020
---
21-
title: "Enter the name for your {+data-lake-short+} as you want it to appear in |service| and click :guilabel:`Next`."
21+
title: "Enter the name for your {+data-lake-short+} as you want it to appear in
22+
|service| and click :guilabel:`Next`."
2223
level: 4
2324
ref: name-your-data-lake
2425
content: |
@@ -49,7 +50,7 @@ content: |
4950
.. important::
5051
5152
|service| displays the External ID and the |service| |aws| IAM user :abbr:`ARN
52-
(Amazon Resource Name)`for a |data-lake| only once. You must save these values
53+
(Amazon Resource Name)` for a |data-lake| only once. You must save these values
5354
to a secure location to reconfigure your |data-lake|. If you
5455
modify your custom |aws| role |arn| in the future, you must update the |aws|
5556
trust policy associated with the role.

source/reference/cli/collections/drop-collections-views.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Drop Views Example
193193
~~~~~~~~~~~~~~~~~~
194194

195195
The following command removes a :ref:`view named "listings"
196-
<dl-create-views-cmd-eg>` on the `airbnb
196+
<dl-collections-views-create-cmd-egs>` on the `airbnb
197197
<https://atlas-data-lake.s3.amazonaws.com/json/sample_airbnb/listingsAndReviews.json>`__
198198
collection in the ``sample`` database:
199199

source/reference/pipeline/out.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Examples
265265
s3: {
266266
bucket: "my-s3-bucket",
267267
region: "us-east-1",
268-
filename: {$toString($sale-date)},
268+
filename: {$toString: "$sale-date"},
269269
format: {
270270
name: "json",
271271
maxFileSize: "100MiB"
@@ -293,8 +293,8 @@ Examples
293293
filename: {
294294
$concat: [
295295
"persons/",
296-
$name, ‘/’,
297-
$unique-id
296+
"$name", ‘/’,
297+
"$unique-id"
298298
]
299299
},
300300
format: {
@@ -324,9 +324,9 @@ Examples
324324
filename: {
325325
$concat: [
326326
"big-box-store/",
327-
{$toString($store_number)}, '/',
328-
{$toString($sale-date)}, '/',
329-
$part-id
327+
{$toString: "$store_number"}, '/',
328+
{$toString: "$sale-date"}, '/',
329+
"$part-id"
330330
]
331331
},
332332
format: {

0 commit comments

Comments
 (0)