Skip to content

Commit 202e48f

Browse files
committed
vale: fix ThereIs occurences
1 parent 816b158 commit 202e48f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+63
-61
lines changed

articles/advanced/application-lifecycle.asciidoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public class MainLayout extends Div {
199199
}
200200
----
201201

202-
There is more to be done.
203202
When a session is closed from one UI, any other UIs attached to it are left hanging.
204203
When the client-side engine notices that a UI and the session are gone on the server side, it displays a `Session Expired` message and, by default, reloads the UI when the message is clicked.
205204

articles/advanced/loading-indicator.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public class AppShell implements AppShellConfigurator, VaadinServiceInitListener
5050

5151
The configuration object can be used to configure the delays after which the indicator changes "stages".
5252
The indicator is shown after a delay of 300ms by default and given a class name of `first`.
53-
There are two additional delays which you can configure.
53+
You can configure two additional delays.
5454
After the delays, the class names `second` and `third` are set, which can be used to change the style of the loading indicator after a certain time has passed.
5555

5656
[source,java]

articles/advanced/long-running-tasks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ This happens because Vaadin is waiting for the long-running task to finish befor
7373
The recommended way to handle long-running tasks is to use an asynchronous approach.
7474
This means that the long-running task is executed in a separate thread, and the UI isn't blocked while the task is running.
7575

76-
There are several ways to achieve an asynchronous model.
76+
An asynchronous model can be achieved in several ways.
7777
But in the context of a Spring Boot application, one way is to use the [annotationname]`@Async` annotation.
7878
The [annotationname]`@Async` annotation is used to mark a method as an asynchronous task.
7979
From the Vaadin UI side, a response to the user request is immediately sent back to the browser, and thus the user can continue interacting with the application right away without being blocked by the long-running task.

articles/advanced/modifying-the-bootstrap-page.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The _Application Shell_ in Vaadin is also known as the _Bootstrap Page_, or [fil
1818
== Modifying the Application Shell
1919

2020
In Vaadin 15 and later, the developer has full control of the contents of [filename]`index.html`.
21-
There are various ways to modify it:
21+
You can modify it in various ways:
2222

2323
. On the client side, by editing [filename]`frontend/index.html` when the content is static, for instance the `<viewport>` tag.
2424
. On the server side, for changes that require some dynamic server content, or when Java syntax is preferred; for example, making the application installable by enabling the `@PWA` built-in feature.

articles/binding-data/components-binder-validation.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ binder.forField(yearOfBirthField)
249249

250250
=== Implementing the Converter Interface
251251

252-
There are two methods to implement in the [interfacename]`Converter` interface:
252+
You need to implement two methods from the [interfacename]`Converter` interface:
253253

254254
* [methodname]`convertToModel()` receives a value that originates from the user.
255255
** The method returns a [classname]`Result` that contains either a converted value or a conversion error message.

articles/components/charts/timeline.asciidoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ as well as navigating between such ranges. It's especially useful when working w
1313
Adding a timeline to your chart is very easy - set the 'timeline' property to 'true',
1414
that is, call [methodname]`setTimeline(true)`.
1515
You can enable the timeline in a chart that displays one or more time series.
16-
Most of the chart types support the timeline.
17-
There are few exceptions which are listed here:
16+
Most of the chart types support the timeline, with these exceptions:
1817
<<charttypes#charts.charttypes.pie, `pie`>>,
1918
<<charttypes#charts.charttypes.gauge, `gauge`>>,
2019
<<charttypes#charts.charttypes.solidgauge, `solidgauge`>>,

articles/components/grid/flow.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ Conceptually, there are three types of renderer:
491491

492492
=== Using Basic Renderers
493493

494-
There are several basic renderers that you can use to configure grid columns.
494+
You can use several basic renderers to configure grid columns.
495495

496496
==== Local Date Renderer
497497

articles/components/upload/flow.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A [classname]`Receiver` instance should be specified to receive uploaded data.
1212
The receiver provides an [interfacename]`OutputStream` for the framework, where it writes the content of the received file.
1313
You can implement the interface directly, or use the prebuilt helpers that buffer the file content for later access.
1414

15-
There are a number of built-in implementations of [classname]`Receiver`:
15+
The built-in implementations of [classname]`Receiver` are:
1616

1717
* [classname]`FileBuffer`
1818
* [classname]`MemoryBuffer`

articles/configuration/node-js.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To force node installation into the home directory in development mode, you shou
2929
== Proxy Settings for Downloading the Front-End Toolchain
3030

3131
If you are behind a proxy server, you should configure your proxy settings so that Vaadin can use them to download the front-end toolchain.
32-
There are four places that Vaadin reads proxy settings from.
32+
Vaadin reads proxy settings from four places.
3333
You can set your proxy data in any of the following:
3434

3535
. system properties

articles/contributing-docs/style-guide/formatting-style.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ HK$99.99
118118

119119
pass:[<!-- vale Vaadin.Abbr = YES -->]
120120

121-
There is no strict rule for forming country codes in this context.
121+
No strict rule exists for forming country codes in this context.
122122
Make sure that it's clear which country is being referred to.
123123

124124
== Dates

0 commit comments

Comments
 (0)