From 35491038e3fced3c3f720c68683705409fd43cb2 Mon Sep 17 00:00:00 2001 From: szook Date: Mon, 1 Oct 2018 11:37:59 -0400 Subject: [PATCH] reorder comments to match field --- av/av.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/av/av.go b/av/av.go index 76b1f61..dfa0306 100644 --- a/av/av.go +++ b/av/av.go @@ -179,8 +179,8 @@ type CodecData interface { type VideoCodecData interface { CodecData - Width() int // Video height - Height() int // Video width + Width() int // Video width + Height() int // Video height } type AudioCodecData interface {