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

Typo fixes in docs #8115

Merged
merged 1 commit into from
Oct 27, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Includes the `TypeDefinitionsStorage` class that contains reusable type definiti

### Workspace Resolver Builder

Creates resolver functions for querying and mutatating the GraphQL schema.
Creates resolver functions for querying and mutating the GraphQL schema.

Each factory in this directory is responsible for producing a distinct resolver type, such as the `FindManyResolverFactory`, designed for adaptable application across various tables.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ image: /images/user-guide/emails/emails_header.png
Queues facilitate async operations to be performed. They can be used for performing background tasks such as sending a welcome email on register.
Each use case will have its own queue class extended from `MessageQueueServiceBase`.

Currently, queue supports two drivers which can be configurred by env variable `MESSAGE_QUEUE_TYPE`.
Currently, queue supports two drivers which can be configured by env variable `MESSAGE_QUEUE_TYPE`.
1. `pg-boss`: this is the default driver, which uses [pg-boss](https://github.com/timgit/pg-boss) under the hood.
2. `bull-mq`: this uses [bull-mq](https://bullmq.io/) under the hood.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image: /images/user-guide/kanban-views/kanban.png

## Useful commands

These commands should be exectued from packages/twenty-server folder.
These commands should be executed from packages/twenty-server folder.
From any other folder you can run `npx nx <command>` twenty-server.

### First time setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ As an example, the hotkey scopes for each page are defined in the `PageHotkeySco
```tsx
export enum PageHotkeyScope {
Settings = 'settings',
CreateWokspace = 'create-workspace',
CreateWorkspace = 'create-workspace',
BOHEUS marked this conversation as resolved.
Show resolved Hide resolved
SignInUp = 'sign-in-up',
CreateProfile = 'create-profile',
PlanRequired = 'plan-required',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ This feature is WIP and is not yet useful for most users.

<ArticleTable options={[
['DEBUG_MODE', 'true', 'Activate debug mode'],
['SIGN_IN_PREFILLED', 'true', 'Prefill the Signin form for usage in a demo or dev environment'],
['SIGN_IN_PREFILLED', 'true', 'Prefill the Sign in form for usage in a demo or dev environment'],
]}></ArticleTable>

### Workspace Cleaning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The newly created view opens automatically.

#### From Sorting and Filtering

When you change the `Sorting` and `Filtering` of an existing view, a `Save as new view` button will appear at the right edge of the `View Bar`. This will opens the New View menu mentionned above, allowing you to create a new view out of an existing one.
When you change the `Sorting` and `Filtering` of an existing view, a `Save as new view` button will appear at the right edge of the `View Bar`. This will opens the New View menu mentioned above, allowing you to create a new view out of an existing one.

<div style={{padding:'69.01% 0 0 0', position:'relative', margin: '32px 0px 0px'}}>
<iframe
Expand Down Expand Up @@ -83,7 +83,7 @@ To Edit or Delete a view:
2. Hover the View you wish to edit
3. Click the `Pen Icon Button` that appears on the right

You will then be able to modify the view. To delete it, press the `Delete` button that just appeard.
You will then be able to modify the view. To delete it, press the `Delete` button that just appeared.


<div style={{padding:'69.01% 0 0 0', position:'relative', margin: '32px 0px 0px'}}>
Expand Down
Loading