From 8e8a72345ccfe097c385d37c0cc75627cc9d07c9 Mon Sep 17 00:00:00 2001 From: Chris Watson Date: Mon, 17 Jun 2019 18:52:28 -0700 Subject: [PATCH] Take 2 --- src/apatite.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apatite.cr b/src/apatite.cr index 56825af..b99fa7f 100644 --- a/src/apatite.cr +++ b/src/apatite.cr @@ -86,7 +86,7 @@ module Apatite # `column_count`. At lease one of `row_count` or # `column_count` must be zero. def empty_matrix(row_count = 0, column_count = 0) - Matrix.new(row_count, column_count) + Matrix.empty(row_count, column_count) end # Creates a matrix where the diagonal elements are composed of `values`.