From fc10742b5c741f1a25bdb791248f7410d1d13bb2 Mon Sep 17 00:00:00 2001 From: Peter Nguyen Date: Thu, 13 Mar 2014 19:35:01 -0400 Subject: [PATCH] Change std::rand to rand in lower_triangular.rs --- src/structs/lower_triangular.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structs/lower_triangular.rs b/src/structs/lower_triangular.rs index 4d435ae6..787bfd3c 100644 --- a/src/structs/lower_triangular.rs +++ b/src/structs/lower_triangular.rs @@ -1,5 +1,5 @@ -use std::rand::Rand; -use std::rand; +use rand::Rand; +use rand; use std::num::{One, Zero}; use std::vec;