diff --git a/next/getting-started/adapter-and-device/the-device.md b/next/getting-started/adapter-and-device/the-device.md index 50d19a0..8757b44 100644 --- a/next/getting-started/adapter-and-device/the-device.md +++ b/next/getting-started/adapter-and-device/the-device.md @@ -10,7 +10,7 @@ The Device 🟢 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. -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 is generally no longer used: **the only capabilities that matter** to the rest of the application are the one of the device. +The device is requested from an **adapter** by specifying the **subset of limits and features** that we are interested in. Once the device is created, the adapter is generally no longer used: **the only capabilities that matter** to the rest of the application are the one of the device. Device request --------------