From 3d1d6883f2e68618cb00fc7040e82fcf27d432a8 Mon Sep 17 00:00:00 2001 From: Vladimir Serov Date: Tue, 11 Feb 2020 10:57:02 +0300 Subject: [PATCH] =?UTF-8?q?rename=20utf8=20=E2=86=92=20unicode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/render/mod.rs | 2 +- src/render/{utf8.rs => unicode.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/render/{utf8.rs => unicode.rs} (100%) diff --git a/src/render/mod.rs b/src/render/mod.rs index 3915661..32fff6e 100644 --- a/src/render/mod.rs +++ b/src/render/mod.rs @@ -7,7 +7,7 @@ use std::cmp::max; pub mod image; pub mod string; pub mod svg; -pub mod utf8; +pub mod unicode; //------------------------------------------------------------------------------ //{{{ Pixel trait diff --git a/src/render/utf8.rs b/src/render/unicode.rs similarity index 100% rename from src/render/utf8.rs rename to src/render/unicode.rs