Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/develop-write-an-application-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ In this sub-category, you can learn how to write a ScalarDL application.

For details on how to write an application, see the following guides:

- [Write a ScalarDL Application in Java](how-to-write-applications.mdx)
- [Write a ScalarDL Application with Generic Contracts](how-to-write-applications-with-generic-contracts.mdx)
- [Write a ScalarDL Application with the HashStore Abstraction](./how-to-write-applications-with-hashstore.mdx)
- [Write a ScalarDL Application with the TableStore Abstraction](./how-to-write-applications-with-tablestore.mdx)
- [Write a ScalarDL Application with the Ledger Abstraction](./how-to-write-applications.mdx)
6 changes: 3 additions & 3 deletions docs/how-to-write-applications-with-hashstore.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ tags:
displayed_sidebar: docsEnglish
---

# Write a ScalarDL Application with HashStore
# Write a ScalarDL Application with the HashStore Abstraction

import JavadocLink from "/src/theme/JavadocLink.js";

This document explains how to write ScalarDL applications with HashStore. You will learn how to interact with ScalarDL HashStore in your applications, handle errors, and validate your data.
This document explains how to write ScalarDL applications with the HashStore abstraction. You will learn how to use ScalarDL HashStore in your applications, handle errors, and validate your data.

## Use the ScalarDL HashStore Client SDK

You have two options to interact with ScalarDL HashStore:
You have two options to use ScalarDL HashStore:

- Using [commands](scalardl-hashstore-command-reference.mdx), as shown in [Get Started with ScalarDL HashStore](getting-started-hashstore.mdx)
- Using the [HashStore Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardl-hashstore-java-client-sdk/)
Expand Down
6 changes: 3 additions & 3 deletions docs/how-to-write-applications-with-tablestore.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ tags:
displayed_sidebar: docsEnglish
---

# Write a ScalarDL Application with TableStore
# Write a ScalarDL Application with the TableStore Abstraction

import JavadocLink from "/src/theme/JavadocLink.js";

This document explains how to write ScalarDL applications with TableStore. You will learn how to interact with ScalarDL TableStore in your applications, handle errors, and validate your data.
This document explains how to write ScalarDL applications with the TableStore abstraction. You will learn how to use ScalarDL TableStore in your applications, handle errors, and validate your data.

## Use the ScalarDL TableStore Client SDK

You have two options to interact with ScalarDL TableStore:
You have two options to use ScalarDL TableStore:

- Using [commands](scalardl-tablestore-command-reference.mdx), as shown in [Get Started with ScalarDL TableStore](getting-started-tablestore.mdx)
- Using the [TableStore Java Client SDK](https://javadoc.io/doc/com.scalar-labs/scalardl-tablestore-java-client-sdk/)
Expand Down
4 changes: 2 additions & 2 deletions docs/how-to-write-applications.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ tags:
displayed_sidebar: docsEnglish
---

# Write a ScalarDL Application in Java
# Write a ScalarDL Application with the Ledger Abstraction

import JavadocLink from "/src/theme/JavadocLink.js";

This document explains how to write ScalarDL applications. You will learn how to integrate ScalarDL into your applications, handle errors, and validate your data.
This document explains how to write ScalarDL applications with the Ledger abstraction. You will learn how to integrate ScalarDL into your applications, handle errors, and validate your data.

## Use the ScalarDL Client SDK

Expand Down