video frame: fix grammar
BUG=None
Change-Id: I33b6358f495edd117fdaba0bf14ff7dc098a662f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/204061
Reviewed-by: Artem Titov <titovartem@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Philipp Hancke <philipp.hancke@googlemail.com>
Cr-Commit-Position: refs/heads/master@{#33190}
diff --git a/api/video/video_frame.h b/api/video/video_frame.h
index e62aae8..e073fd5 100644
--- a/api/video/video_frame.h
+++ b/api/video/video_frame.h
@@ -134,11 +134,11 @@
// Get frame size in pixels.
uint32_t size() const;
- // Get frame ID. Returns 0 if ID is not set. Not guarantee to be transferred
- // from the sender to the receiver, but preserved on single side. The id
+ // Get frame ID. Returns 0 if ID is not set. Not guaranteed to be transferred
+ // from the sender to the receiver, but preserved on the sender side. The id
// should be propagated between all frame modifications during its lifetime
// from capturing to sending as encoded image. It is intended to be unique
- // over a time window of a few minutes for peer connection, to which
+ // over a time window of a few minutes for the peer connection to which the
// corresponding video stream belongs to.
uint16_t id() const { return id_; }
void set_id(uint16_t id) { id_ = id; }