summaryrefslogtreecommitdiff
path: root/src/simple_example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/simple_example.cpp')
-rw-r--r--src/simple_example.cpp2
1 files changed, 1 insertions, 1 deletions
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 );