From 1d292c5a59cf023acdab13515fd783c44b7ffd51 Mon Sep 17 00:00:00 2001
From: 317brian <53799971+317brian@users.noreply.github.com>
Date: Wed, 28 Aug 2024 11:13:15 -0700
Subject: [PATCH] docs: fix the case of the s3 examples for msq (#16969)
---
docs/multi-stage-query/reference.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/multi-stage-query/reference.md b/docs/multi-stage-query/reference.md
index c4345fedf81..50f07ff80b4 100644
--- a/docs/multi-stage-query/reference.md
+++ b/docs/multi-stage-query/reference.md
@@ -130,13 +130,13 @@ FROM
##### S3
-Export results to S3 by passing the function `S3()` as an argument to the `EXTERN` function. Note that this requires the `druid-s3-extensions`.
-The `S3()` function is a Druid function that configures the connection. Arguments for `S3()` should be passed as named parameters with the value in single quotes like the following example:
+Export results to S3 by passing the function `s3()` as an argument to the `EXTERN` function. Note that this requires the `druid-s3-extensions`.
+The `s3()` function is a Druid function that configures the connection. Arguments for `s3()` should be passed as named parameters with the value in single quotes like the following example:
```sql
INSERT INTO
EXTERN(
- S3(bucket => 'your_bucket', prefix => 'prefix/to/files')
+ s3(bucket => 'your_bucket', prefix => 'prefix/to/files')
)
AS CSV
SELECT