Skip to content
Closed
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 .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
steps:
- uses: actions/checkout@v6
# Executes "typos ."
- uses: crate-ci/typos@v1.44.0
- uses: crate-ci/typos@v1.46.0
2 changes: 2 additions & 0 deletions multiboot2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- **Breaking**: `VBEWindowAttributes::WRITABLE` renamed to `WRITEABLE`

Check warning on line 5 in multiboot2/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Spellcheck

"WRITEABLE" should be "WRITABLE".

Check warning on line 5 in multiboot2/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Spellcheck

"WRITEABLE" should be "WRITABLE".

## v0.24.1 (2025-11-21)

- Fix typo
Expand Down
2 changes: 1 addition & 1 deletion multiboot2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ mod tests {
assert!(vbe.mode_info().window_a_attributes.contains(
VBEWindowAttributes::RELOCATABLE
| VBEWindowAttributes::READABLE
| VBEWindowAttributes::WRITEABLE
| VBEWindowAttributes::WRITABLE
));
assert_eq!({ vbe.mode_info().window_granularity }, 64);
assert_eq!({ vbe.mode_info().window_size }, 64);
Expand Down
4 changes: 2 additions & 2 deletions multiboot2/src/vbe_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,8 @@ bitflags! {
/// Window is readable?
const READABLE = 0x2;

/// Window is writeable?
const WRITEABLE = 0x4;
/// Window is writable?
const WRITABLE = 0x4;
}
}

Expand Down
Loading