diff options
author | 2017-08-19 22:16:18 +0300 | |
---|---|---|
committer | 2017-08-19 22:16:18 +0300 | |
commit | 7b0419c45b3edb09c7b216e4db795f9a850bb26a (patch) | |
tree | a1d8b7bebb92077d7c3dff2d036121ad98baa9ea /src/shared/segmentation.rs | |
parent | a695b4b16d18ce63101ef691fc7f132dfdc84edb (diff) | |
download | rust-x86-7b0419c45b3edb09c7b216e4db795f9a850bb26a.tar.gz rust-x86-7b0419c45b3edb09c7b216e4db795f9a850bb26a.tar.zst rust-x86-7b0419c45b3edb09c7b216e4db795f9a850bb26a.zip |
Fix typo.
Diffstat (limited to 'src/shared/segmentation.rs')
-rw-r--r-- | src/shared/segmentation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/segmentation.rs b/src/shared/segmentation.rs index e836d42..bdf90e6 100644 --- a/src/shared/segmentation.rs +++ b/src/shared/segmentation.rs @@ -246,7 +246,7 @@ bitflags! { const FLAGS_L = 1 << 5, /// Default operation size (0 = 16-bit segment, 1 = 32-bit segment). const FLAGS_DB = 1 << 6, - /// Granularity (0 = limit in bytes, 1 = limt in 4 KiB Pages). + /// Granularity (0 = limit in bytes, 1 = limit in 4 KiB Pages). const FLAGS_G = 1 << 7, } |