Skip to content

Commit 747005f

Browse files
committed
docs: update WDL examples to v1.3 and fix misc errors
1 parent 9709ba9 commit 747005f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.vitepress/theme/components/Hero/Hero.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ onMounted(async () => {
2525
}
2626
});
2727
28-
const wdlCodeText = `version 1.2
28+
const wdlCodeText = `version 1.3
2929
3030
task say_hello {
3131
input {
@@ -53,7 +53,7 @@ task say_hello {
5353
}
5454
});
5555
56-
runCode.value = await highlighter.codeToHtml("sprocket run example.wdl --entrypoint say_hello greeting=\"Hello\"", {
56+
runCode.value = await highlighter.codeToHtml("sprocket run example.wdl --target say_hello greeting=\"Hello\"", {
5757
lang: "bash",
5858
theme: "github-dark",
5959
colorReplacements: {

configuration/storage/gcs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Sprocket supports transferring files to and from [Google Cloud Storage](https://cloud.google.com/storage).
44

5-
## Supported AWS S3 URLs
5+
## Supported Google Cloud Storage URLs
66

77
The following cloud storage URLs for Google Cloud Storage are supported:
88

@@ -33,7 +33,7 @@ This overrides any Google Cloud Storage authentication settings in `sprocket.tom
3333

3434
### Configuration file
3535

36-
Google Cloud Storage authentication can be configured with the `run.storage.s3.auth`
36+
Google Cloud Storage authentication can be configured with the `run.storage.google.auth`
3737
section in `sprocket.toml`:
3838

3939
```toml

public/guided-tour/example.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version 1.2
1+
version 1.3
22

33
task say_hello {
44
input {

subcommands/doc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ For example:
149149
##
150150
## This is a paragraph with **bolding**, _italics_, and `code` formatting.
151151
152-
version 1.2
152+
version 1.3
153153
154154
workflow foo {}
155155
```

0 commit comments

Comments
 (0)