From 895c3f0c325e8c609710001ccc833d1a4d8ad332 Mon Sep 17 00:00:00 2001 From: Jordan Terrell Date: Sat, 26 Jan 2019 14:46:06 -0600 Subject: [PATCH] Fixing spelling typos... --- tests/test_column_family.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_column_family.rs b/tests/test_column_family.rs index d36fec2..bdd4eec 100644 --- a/tests/test_column_family.rs +++ b/tests/test_column_family.rs @@ -185,7 +185,7 @@ pub fn test_column_family_with_options() { let cfs = vec![cf_descriptor]; match DB::open_cf_descriptors(&opts, &n, cfs) { - Ok(_db) => println!("created db with column family descriptors succesfully"), + Ok(_db) => println!("created db with column family descriptors successfully"), Err(e) => { panic!( "could not create new database with column family descriptors: {}", @@ -204,7 +204,7 @@ pub fn test_column_family_with_options() { let cfs = vec![cf_descriptor]; match DB::open_cf_descriptors(&opts, &n, cfs) { - Ok(_db) => println!("succesfully re-opened database with column family descriptors"), + Ok(_db) => println!("successfully re-opened database with column family descriptors"), Err(e) => { panic!( "unable to re-open database with column family descriptors: {}",