Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos. #161

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fidget/src/jit/aarch64/grad_slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
/// |------------|----------|---------------------------|
Expand Down
4 changes: 2 additions & 2 deletions fidget/src/jit/aarch64/interval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
/// |------------|------------|---------------------------|
Expand Down Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion fidget/src/jit/aarch64/point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
/// |------------|----------|-----------------------|
Expand Down
2 changes: 1 addition & 1 deletion fidget/src/jit/x86_64/grad_slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
/// |------------|----------|--------------------------|
Expand Down