From cdb07998ff1a25fee6c5ac30c0e92f50d0d8b1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20Dos=C3=A9?= Date: Sun, 18 Oct 2020 21:32:12 -0700 Subject: [PATCH] fix type documentation --- lib/rgb_matrix.ex | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/lib/rgb_matrix.ex b/lib/rgb_matrix.ex index 08a4d6e..d6cf6c5 100644 --- a/lib/rgb_matrix.ex +++ b/lib/rgb_matrix.ex @@ -1,12 +1,15 @@ defmodule RGBMatrix do - @moduledoc false + @moduledoc """ + RGBMatrix is a rendering engine for the Nerves Keyboard project. It schedules + and renders frames. There is a small selection of animations built in. + """ @type any_color_model :: - Chameleon.Color.RGB.t() - | Chameleon.Color.CMYK.t() - | Chameleon.Color.Hex.t() - | Chameleon.Color.HSL.t() - | Chameleon.Color.HSV.t() - | Chameleon.Color.Keyword.t() - | Chameleon.Color.Pantone.t() + Chameleon.RGB.t() + | Chameleon.CMYK.t() + | Chameleon.Hex.t() + | Chameleon.HSL.t() + | Chameleon.HSV.t() + | Chameleon.Keyword.t() + | Chameleon.Pantone.t() end