Skip to content

Commit 6151de9

Browse files
committed
Fix tabpane shortcode
Signed-off-by: Marc Duiker <marcduiker@users.noreply.github.com>
1 parent 99b86c1 commit 6151de9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

daprdocs/content/en/developing-applications/building-blocks/workflow/workflow-patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ await context.CallActivityAsync("PostResults", sum);
627627
With the release of 1.16, it's even easier to process workflow activities in parallel while putting an upper cap on
628628
concurrency by using the following extension methods on the `WorkflowContext`:
629629
630-
{{% tabpane %}}
630+
{{< tabpane text=true >}}
631631
632632
{{% tab header=".NET" %}}
633633
<!-- .NET -->
@@ -645,7 +645,7 @@ await context.CallActivityAsync("PostResults", sum);
645645
646646
{{% /tab %}}
647647
648-
{{% /tabpane %}}
648+
{{< /tabpane >}}
649649
650650
Limiting the degree of concurrency in this way can be useful for limiting contention against shared resources. For example, if the activities need to call into external resources that have their own concurrency limits, like a databases or external APIs, it can be useful to ensure that no more than a specified number of activities call that resource concurrently.
651651

daprdocs/content/en/reference/components-reference/supported-bindings/gcpbucket.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ The metadata parameters are:
237237

238238
#### Example
239239

240-
{{% tabpane text=true %}}
240+
{{< tabpane text=true >}}
241241

242242
{{% tab header="Windows" %}}
243243
```bash
@@ -252,7 +252,7 @@ The metadata parameters are:
252252
```
253253
{{% /tab %}}
254254

255-
{{% /tabpane %}}
255+
{{< /tabpane >}}
256256

257257
#### Response
258258

daprdocs/content/en/reference/components-reference/supported-state-stores/setup-coherence.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ efficient as possible. You will receive an error if you try to set the TTL to a
8585

8686
## Setup Coherence
8787

88-
{{% tabpane text=true %}}
88+
{{< tabpane text=true >}}
8989

9090
{{% tab header="Self-Hosted" %}}
9191
Run Coherence locally using Docker:
@@ -149,7 +149,7 @@ For example, if installing using the example above, the Coherence host address w
149149
`my-cluster-grpc`
150150
{{% /tab %}}
151151

152-
{{% /tabpane %}}
152+
{{< /tabpane >}}
153153

154154
## Related links
155155
- [Basic schema for a Dapr component]({{< ref component-schema >}})

0 commit comments

Comments
 (0)