HWC2: Fix a doc bug in setColorTransform

Fixes a minor error in the documentation of the setColorTransform
function.

Change-Id: Id1a94d6066f642579c6b935a6cc781505f25c11d
diff --git a/include/hardware/hwcomposer2.h b/include/hardware/hwcomposer2.h
index e6aac8d..52b16c9 100644
--- a/include/hardware/hwcomposer2.h
+++ b/include/hardware/hwcomposer2.h
@@ -1398,8 +1398,8 @@
  * color [R_out, G_out, B_out] will be:
  *
  * R_out = R_in * r.r + G_in * g.r + B_in * b.r + Tr
- * G_out = G_in * r.g + G_in * g.g + B_in * b.g + Tg
- * B_out = B_in * r.b + G_in * g.b + B_in * b.b + Tb
+ * G_out = R_in * r.g + G_in * g.g + B_in * b.g + Tg
+ * B_out = R_in * r.b + G_in * g.b + B_in * b.b + Tb
  *
  * Parameters:
  *   matrix - a 4x4 transform matrix (16 floats) as described above