mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-12-28 06:27:13 +00:00
sys_util: remove accidental HTML from doc comments
For some reason, the angle brackets in the comments confused doc-tests such that they hung everytime `cargo test` was run on sys_util on my machine. My theory is that the angle brackets triggered some strange HTML behavior in `cargo test`. BUG=None TEST=cd sys_util; cargo test Change-Id: Iceb81e64aecc4cc2a9397f2d1af2e64aeb8e2b5e Reviewed-on: https://chromium-review.googlesource.com/518444 Commit-Ready: Zach Reizner <zachr@chromium.org> Tested-by: Zach Reizner <zachr@chromium.org> Reviewed-by: Dylan Reid <dgreid@chromium.org>
This commit is contained in:
parent
66cf8bbb34
commit
db8a35a1b1
2 changed files with 2 additions and 2 deletions
|
@ -118,7 +118,7 @@ impl GuestMemory {
|
|||
}
|
||||
|
||||
/// Writes a slice to guest memory at the specified guest address.
|
||||
/// Returns Ok(<number of bytes written>). The number of bytes written can
|
||||
/// Returns the number of bytes written. The number of bytes written can
|
||||
/// be less than the length of the slice if there isn't enough room in the
|
||||
/// memory region.
|
||||
///
|
||||
|
|
|
@ -105,7 +105,7 @@ impl MemoryMapping {
|
|||
}
|
||||
|
||||
/// Writes a slice to the memory region at the specified offset.
|
||||
/// Returns Ok(<number of bytes written>). The number of bytes written can
|
||||
/// Returns the number of bytes written. The number of bytes written can
|
||||
/// be less than the length of the slice if there isn't enough room in the
|
||||
/// memory region.
|
||||
///
|
||||
|
|
Loading…
Reference in a new issue