aboutsummaryrefslogtreecommitdiff
path: root/src/style/colors.rs
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-06-21 13:38:59 -0700
committerJoel Galenson <jgalenson@google.com>2021-06-21 13:38:59 -0700
commitf13194fcde23099f4e2d4d1b1b3222bef0bf8733 (patch)
tree3a299f0c2a6032253f0171a3d8b9779d0b1d68e5 /src/style/colors.rs
parent844ca977cb8120ec382c67014272989fc9b28a5f (diff)
downloadplotters-f13194fcde23099f4e2d4d1b1b3222bef0bf8733.tar.gz
Upgrade rust/crates/plotters to 0.3.1android-s-beta-4android-s-beta-3android-s-beta-4
Test: make Change-Id: I7f5c36b0fc064749e94123a2b1f457f861eeb39b
Diffstat (limited to 'src/style/colors.rs')
-rw-r--r--src/style/colors.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/style/colors.rs b/src/style/colors.rs
index 3b9ce07..297de5e 100644
--- a/src/style/colors.rs
+++ b/src/style/colors.rs
@@ -10,7 +10,7 @@ macro_rules! predefined_color {
($name:ident, $r:expr, $g:expr, $b:expr, $a: expr, $doc:expr) => {
#[doc = $doc]
pub const $name: RGBAColor = RGBAColor($r, $g, $b, $a);
- }
+ };
}
predefined_color!(WHITE, 255, 255, 255, "The predefined white color");