Skip to content

Commit a5a29b6

Browse files
docs: fix grammar and typos in core documentation
1 parent cb644ea commit a5a29b6

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

docs/content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: >
99

1010
<div class="hero-section hero-section--compact">
1111
<h1 class="hero-title">Build Change-driven Solutions with Drasi</h1>
12-
<p class="hero-subtitle">Drasi is a Data Change Processing platform that makes it easy build change-driven solutions that detect complex changes across your data sources and react to them instantly.</p>
12+
<p class="hero-subtitle">Drasi is a Data Change Processing platform that makes it easy to build change-driven solutions that detect complex changes across your data sources and react to them instantly.</p>
1313

1414
<div class="cta-group">
1515
<a href="/drasi-server/getting-started/" class="cta-button cta-button--primary">

docs/content/concepts/overview/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ More detail about Sources is available in the [Sources](/concepts/sources) overv
105105

106106
### Continuous Queries
107107

108-
Continuous Queries, as the name implies, are queries that run continuously. To understand what is unique about them, it is useful to contrast them with a the kind of {{< term "Instantaneous Query" "instantaneous queries" >}} developers are accustomed to running against databases.
108+
Continuous Queries, as the name implies, are queries that run continuously. To understand what is unique about them, it is useful to contrast them with the kind of {{< term "Instantaneous Query" "instantaneous queries" >}} developers are accustomed to running against databases.
109109

110110
When you execute an **instantaneous query**, you are running the query against the database at a point in time. The database calculates the results to the query and returns them. While you work with those results, you are working with a static snapshot of the data and are unaware of any changes that may have happened to the data after you ran the query. If you run the same instantaneous query periodically, the query results might be different each time due to changes made to the data by other processes. But to understand what has changed, you would need to compare the most recent result with the previous result.
111111

docs/content/drasi-kubernetes/how-to-guides/configure-reactions/configure-signalr-reaction/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ npm install --save @drasi/signalr-react
305305
306306
#### ResultSet Component
307307
308-
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of it's children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
308+
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of its children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
309309
310310
```jsx
311311
<ResultSet url='<Your Drasi SignalR endpoint>' queryId='<query name>' sortBy={item => item.field1}>
@@ -359,7 +359,7 @@ npm install --save @drasi/signalr-vue
359359

360360
#### ResultSet Component
361361

362-
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of it's children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
362+
The `ResultSet` component requires an endpoint to the SignalR reaction and a query ID. It will render a copy of its children for every item in the result set of that query, and keep the data up to date via the SignalR connection.
363363

364364
```vue
365365
<ResultSet url="<your signalr endpoint>" queryId="<query name>" :sortBy="item => item.field1">

docs/themes/docsy

Submodule docsy updated 303 files

package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)