From 6da8e33f235807210719de3b43a240e02edbacef Mon Sep 17 00:00:00 2001 From: Sam <81338469+STCollier@users.noreply.github.com> Date: Sun, 10 Aug 2025 22:11:01 -0400 Subject: [PATCH] Update the-adapter.md small typo --- getting-started/adapter-and-device/the-adapter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/adapter-and-device/the-adapter.md b/getting-started/adapter-and-device/the-adapter.md index c659874..ae537c6 100644 --- a/getting-started/adapter-and-device/the-adapter.md +++ b/getting-started/adapter-and-device/the-adapter.md @@ -309,7 +309,7 @@ Inspecting the adapter The adapter object provides **information about the underlying implementation** and hardware, and about what it is able or not to do. It advertises the following information: - - **Limits** regroup all the **maximum and minimum** values that may limit the behavior of the underlying GPU and its driver. A typical examples is the maximum texture size. Supported limits are retrieved using `wgpuAdapterGetLimits`. + - **Limits** regroup all the **maximum and minimum** values that may limit the behavior of the underlying GPU and its driver. A typical example is the maximum texture size. Supported limits are retrieved using `wgpuAdapterGetLimits`. - **Features** are non-mandatory **extensions** of WebGPU, that adapters may or may not support. They can be listed using `wgpuAdapterEnumerateFeatures` or tested individually with `wgpuAdapterHasFeature`. - **Properties** are extra information about the adapter, like its name, vendor, etc. Properties are retrieved using `wgpuAdapterGetProperties`.