summaryrefslogtreecommitdiff
path: root/src/sys/quota.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/quota.rs')
-rw-r--r--src/sys/quota.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/quota.rs b/src/sys/quota.rs
index abe114f0..a85d9e30 100644
--- a/src/sys/quota.rs
+++ b/src/sys/quota.rs
@@ -60,11 +60,11 @@ libc_enum!{
QFMT_VFS_OLD,
/// Use the standard VFS v0 quota format.
///
- /// Handles 32-bit UIDs/GIDs and quota limits up to 2^42 bytes/2^32 inodes.
+ /// Handles 32-bit UIDs/GIDs and quota limits up to 2<sup>32</sup> bytes/2<sup>32</sup> inodes.
QFMT_VFS_V0,
/// Use the VFS v1 quota format.
///
- /// Handles 32-bit UIDs/GIDs and quota limits of 2^64 bytes/2^64 inodes.
+ /// Handles 32-bit UIDs/GIDs and quota limits of 2<sup>64</sup> bytes/2<sup>64</sup> inodes.
QFMT_VFS_V1,
}
}