From a83a8389b15ed9a0e072ee3500932466ece41a67 Mon Sep 17 00:00:00 2001 From: OGordoo Date: Thu, 14 Oct 2021 17:53:50 +0100 Subject: [PATCH] matrix f64 format mistake --- subjects/matrix/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/matrix/README.md b/subjects/matrix/README.md index 303bc903..953308a2 100644 --- a/subjects/matrix/README.md +++ b/subjects/matrix/README.md @@ -54,6 +54,6 @@ And its output: $ cargo run Matrix([[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]) Matrix([[1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]]) -Matrix([[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]]) +Matrix([[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]) $ ```