Skip to content

Commit f342981

Browse files
authored
A couple tiny grammar fixes (#96)
1 parent 89f9390 commit f342981

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

getting-started/adapter-and-device/the-device.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Device <span class="bullet">🟢</span>
1010

1111
A WebGPU **device** represents a **context** of use of the API. All the objects that we create (geometry, textures, etc.) are owned by the device.
1212

13-
The device is requested from an **adapter** by specifying the **subset of limits and features** that we are interesed in. Once the device is created, the adapter should no longer be used. **The only capabilities that matter** to the application are the one of the device.
13+
The device is requested from an **adapter** by specifying the **subset of limits and features** that we are interesed in. Once the device is created, the adapter should no longer be used. **The only capabilities that matter** to the application are the ones of the device.
1414

1515
Device request
1616
--------------
@@ -221,7 +221,7 @@ deviceDesc.deviceLostCallback = nullptr;
221221
We will come back here and refine these options whenever we will need some more capabilities from the device.
222222

223223
```{note}
224-
The `label` is **used in error message** to help you debug where something went wrong, so it is good practice to use it as soon as you get multiple objects of the same type. Currently, this is only used by Dawn.
224+
The `label` is **used in error messages** to help you debug where something went wrong, so it is good practice to use it as soon as you get multiple objects of the same type. Currently, this is only used by Dawn.
225225
```
226226

227227
Inspecting the device

0 commit comments

Comments
 (0)