From 3151ef862596bbfc69b2941765f2574348d85a8f Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Sun, 4 Dec 2016 11:13:24 -0800 Subject: Rename RenderApi::render_grid() to render_cells() This probably should have been renamed in the original refactor, but oh well. `render_cells()` takes a generic parameter `I` which is any `Iterator` and is thus no longer coupled to the grid type. Renaming it reflects that. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index aaa20953..04b269e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -364,7 +364,7 @@ impl Display { api.clear(); // Draw the grid - api.render_grid(terminal.renderable_cells(), glyph_cache); + api.render_cells(terminal.renderable_cells(), glyph_cache); }); } -- cgit v1.2.3-54-g00ecf