From dce6531c83d5181323b6a11102fb3f4d04ce147f Mon Sep 17 00:00:00 2001 From: Buote Xu Date: Fri, 15 Jun 2012 20:18:37 +0200 Subject: [PATCH] fixed commandline options --- examples/example-bruker.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/example-bruker.cpp b/examples/example-bruker.cpp index dc078f5..35f795f 100644 --- a/examples/example-bruker.cpp +++ b/examples/example-bruker.cpp @@ -117,10 +117,10 @@ int parseProgramOptions(int argc, char* argv[], ProgramOptions& options) config.add_options() ("segments", po::value(&options.segments_)->default_value( 1), - "Number of segments the data should be partitioned in before using libfbi) - ("overlap", po::value(&options.overlap_)->default_value( + "Number of segments the data should be partitioned in before using libfbi") + ("overlap", po::value(&options.overlap_)->default_value( 0), - "Overlap in time-dimension taken into account to not have 'jumps'"); + "Overlap in time-dimension taken into account to not have jumps"); po::options_description cmdline_options("Options available via command line"); cmdline_options.add(generic).add(config);