From d7677b1f3f5ceee9cfdb5275ef00cbf79a714122 Mon Sep 17 00:00:00 2001 From: Bryn Keller Date: Mon, 7 Mar 2016 13:51:48 -0800 Subject: Python interface to PHAT --- src/simple_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/simple_example.cpp b/src/simple_example.cpp index aff3ff9..ba8aafe 100644 --- a/src/simple_example.cpp +++ b/src/simple_example.cpp @@ -96,7 +96,7 @@ int main( int argc, char** argv ) std::cout << std::endl; std::cout << "The boundary matrix has " << boundary_matrix.get_num_cols() << " columns: " << std::endl; for( phat::index col_idx = 0; col_idx < boundary_matrix.get_num_cols(); col_idx++ ) { - std::cout << "Colum " << col_idx << " represents a cell of dimension " << (int)boundary_matrix.get_dim( col_idx ) << ". "; + std::cout << "Column " << col_idx << " represents a cell of dimension " << (int)boundary_matrix.get_dim( col_idx ) << ". "; if( !boundary_matrix.is_empty( col_idx ) ) { std::vector< phat::index > temp_col; boundary_matrix.get_col( col_idx, temp_col ); -- cgit v1.2.3