summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBryn Keller <xoltar@xoltar.org>2016-03-07 13:51:48 -0800
committerBryn Keller <xoltar@xoltar.org>2016-03-07 13:51:48 -0800
commitd7677b1f3f5ceee9cfdb5275ef00cbf79a714122 (patch)
treefb6e9356e5093b0e077979faacf9de6f215152c2 /src
parent41a3fef94446ec6ce115c65d92890ae9b888690c (diff)
Python interface to PHAT
Diffstat (limited to 'src')
-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 );