Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix typos #4660

Merged
merged 5 commits into from
Feb 5, 2025
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
2 changes: 1 addition & 1 deletion docs/data/toolpad/studio/concepts/custom-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ app.use('/my-app', handler);
app.listen(3001);
```

To run the custom server you'll have to update the scripts in your your package.json
To run the custom server you'll have to update the scripts in your package.json

```json
{
Expand Down
2 changes: 1 addition & 1 deletion docs/data/toolpad/studio/concepts/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

## Install step

Install required depdencies via:
Install required dependencies via:

<codeblock storageKey="package-manager">

Expand Down
4 changes: 2 additions & 2 deletions docs/data/toolpad/studio/concepts/page-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

### Options

The possible options for the the display mode are:
The possible options for the display mode are:

- **App shell**: Pages with their display mode set to this value will render within the navigation sidebar on the left, allowing for easy navigation between all pages.

Expand Down Expand Up @@ -52,7 +52,7 @@ Page parameters allow you to pass external data into the Toolpad Studio page sta

### Setting parameters

You can set page parameters from the Page tab in the **Inspector panel** on right. You can add multiple parameters along with a default value for each.
You can set page parameters from the Page tab in the **Inspector panel** on the right. You can add multiple parameters along with a default value for each.

### Using parameters

Expand Down
4 changes: 2 additions & 2 deletions docs/data/toolpad/studio/concepts/queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

You can use this option to enable or disable the query from running

Queries may be programatically re-fetched via the `refetch` function available on these query objects. For example, for a query named `getOrders`, you can add
Queries may be programmatically re-fetched via the `refetch` function available on these query objects. For example, for a query named `getOrders`, you can add

```js
getOrders.refetch();
Expand All @@ -34,7 +34,7 @@

## Actions

Actions allow performing updates to remote data sources (edit, update, delete) on a user interaction. Actions are not automatically called, they must be programtically called a JavaScript expression in a binding. For example, for a query named `createCustomer`, we can add
Actions allow performing updates to remote data sources (edit, update, delete) on a user interaction. Actions are not automatically called, they must be programmatically called a JavaScript expression in a binding. For example, for a query named `createCustomer`, we can add

Check warning on line 37 in docs/data/toolpad/studio/concepts/queries.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Google.We] Try to avoid using first-person plural like 'we'. Raw Output: {"message": "[Google.We] Try to avoid using first-person plural like 'we'.", "location": {"path": "docs/data/toolpad/studio/concepts/queries.md", "range": {"start": {"line": 37, "column": 265}}}, "severity": "WARNING"}

```js
createCustomer.call();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<p class="description">Toolpad Studio allows you to connect to any database, fast.</p>

You can write a custom function to connect to any database that you need to.
You can focus on writing database queries, while the data fetching and displaying is handled by Toolpad Studio.
You can focus on writing database queries, while the data fetching and displaying are handled by Toolpad Studio.

## Connecting to MySQL

Expand Down
Loading