diff --git a/docs/snapshotting/snapshot-support.md b/docs/snapshotting/snapshot-support.md index c8d964ae89b..910dde94ce7 100644 --- a/docs/snapshotting/snapshot-support.md +++ b/docs/snapshotting/snapshot-support.md @@ -266,7 +266,7 @@ curl --unix-socket /tmp/firecracker.socket -i \ -d '{ "snapshot_type": "Full", "snapshot_path": "./snapshot_file", - "mem_file_path": "./mem_file", + "mem_file_path": "./mem_file" }' ``` diff --git a/src/vmm/src/devices/virtio/vsock/packet.rs b/src/vmm/src/devices/virtio/vsock/packet.rs index f19723d25cb..fb79c76292f 100644 --- a/src/vmm/src/devices/virtio/vsock/packet.rs +++ b/src/vmm/src/devices/virtio/vsock/packet.rs @@ -518,7 +518,7 @@ mod tests { )) } - // Test case: the buffer descriptor cannot fit all the data advertised by the the + // Test case: the buffer descriptor cannot fit all the data advertised by the // packet header `len` field. { create_context!(test_ctx, handler_ctx); diff --git a/src/vmm/src/dumbo/tcp/connection.rs b/src/vmm/src/dumbo/tcp/connection.rs index 8036f428318..e17be1063af 100644 --- a/src/vmm/src/dumbo/tcp/connection.rs +++ b/src/vmm/src/dumbo/tcp/connection.rs @@ -815,7 +815,7 @@ impl Connection { /// * `mss_reserved` - How much (if anything) of the MSS value has been already used at the /// lower layers (by IP options, for example). This will be zero most of the time. /// * `payload_src` - References a buffer which contains data to send, and also specifies the - /// sequence number associated with the first byte from that that buffer. + /// sequence number associated with the first byte from that buffer. /// * `now` - An opaque timestamp representing the current moment in time. /// /// [`MAX_WINDOW_SIZE`]: ../constant.MAX_WINDOW_SIZE.html