From bd98ea7c4f15d9b1c2b11385e7571d6a30124524 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 27 Aug 2024 23:00:23 +0700 Subject: [PATCH] Fix some typos. --- fidget/src/jit/aarch64/grad_slice.rs | 2 +- fidget/src/jit/aarch64/interval.rs | 4 ++-- fidget/src/jit/aarch64/point.rs | 2 +- fidget/src/jit/x86_64/grad_slice.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fidget/src/jit/aarch64/grad_slice.rs b/fidget/src/jit/aarch64/grad_slice.rs index 74af12f4..c09e240e 100644 --- a/fidget/src/jit/aarch64/grad_slice.rs +++ b/fidget/src/jit/aarch64/grad_slice.rs @@ -10,7 +10,7 @@ use dynasmrt::{dynasm, DynasmApi, DynasmLabelApi}; /// Implementation for the gradient slice assembler on `aarch64` /// -/// Registers as pased in as follows: +/// Registers are passed in as follows: /// /// | Variable | Register | Type | /// |------------|----------|---------------------------| diff --git a/fidget/src/jit/aarch64/interval.rs b/fidget/src/jit/aarch64/interval.rs index 09c6cd5f..d4b97ec1 100644 --- a/fidget/src/jit/aarch64/interval.rs +++ b/fidget/src/jit/aarch64/interval.rs @@ -11,7 +11,7 @@ use dynasmrt::{dynasm, DynasmApi}; /// Implementation for the interval assembler on `aarch64` /// -/// Registers as pased in as follows: +/// Registers are passed in as follows: /// /// | Variable | Register | Type | /// |------------|------------|---------------------------| @@ -45,7 +45,7 @@ use dynasmrt::{dynasm, DynasmApi}; /// ```text /// | Position | Value | Notes | /// |----------|------------------------------------------------------------| -/// | 0x100 | ... | Register spills live up here | +/// | 0x100 | ... | Register spills live up here | /// |----------|--------------|---------------------------------------------| /// | 0xf0 | `x23` | During functions calls, we use these | /// | 0xe8 | `x22` | as temporary storage so must preserve their | diff --git a/fidget/src/jit/aarch64/point.rs b/fidget/src/jit/aarch64/point.rs index f5a04715..db6a281e 100644 --- a/fidget/src/jit/aarch64/point.rs +++ b/fidget/src/jit/aarch64/point.rs @@ -10,7 +10,7 @@ use dynasmrt::{dynasm, DynasmApi}; /// Implementation for the single-point assembler on `aarch64` /// -/// Registers as pased in as follows: +/// Registers are passed in as follows: /// /// | Variable | Register | Type | /// |------------|----------|-----------------------| diff --git a/fidget/src/jit/x86_64/grad_slice.rs b/fidget/src/jit/x86_64/grad_slice.rs index bee79f9b..53bf51d0 100644 --- a/fidget/src/jit/x86_64/grad_slice.rs +++ b/fidget/src/jit/x86_64/grad_slice.rs @@ -10,7 +10,7 @@ use dynasmrt::{dynasm, DynasmApi, DynasmLabelApi}; /// Implementation for the gradient slice assembler on `x86_64` /// -/// Registers as pased in as follows: +/// Registers are passed in as follows: /// /// | Variable | Register | Type | /// |------------|----------|--------------------------|