From b2184b3a36243b94d157cc66f630e02c67871b07 Mon Sep 17 00:00:00 2001 From: David Ross Date: Mon, 20 May 2019 10:19:49 -0700 Subject: [PATCH] Fix doc typo (abd -> and) (#350) --- src/theme/color_pair.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/color_pair.rs b/src/theme/color_pair.rs index e531f83..e5a0876 100644 --- a/src/theme/color_pair.rs +++ b/src/theme/color_pair.rs @@ -13,7 +13,7 @@ pub struct ColorPair { impl ColorPair { /// Return an inverted color pair. /// - /// With swapped front abd back color. + /// With swapped front and back color. pub fn invert(self) -> Self { ColorPair { front: self.back,