diff --git a/fslsplit.cc b/fslsplit.cc
index 21c127eac90931462fbe7cff6144cb43448649c7..5a0b62edafb35a3e38a258816fba7c21a48d64a2 100755
--- a/fslsplit.cc
+++ b/fslsplit.cc
@@ -13,15 +13,14 @@ using namespace MISCMATHS;
 void print_usage(const string& progname) 
 {
   cout << endl;
-  cout << "Usage: fslsplit <inputfile.hdr>" << endl;
-  cout << "       fslsplit <inputfile.hdr> [basename] [-t/x/y/z]" << endl;
-  cout << "       -t : seperate images in time (default behaviour)" << endl;
-  cout << "       -x : seperate images in the x direction"  << endl;
-  cout << "       -y : seperate images in the y direction"  << endl;
-  cout << "       -z : seperate images in the z direction" << endl;
+  cout << "Usage: fslsplit <input>" << endl;
+  cout << "       fslsplit <input> [output_basename] [-t/x/y/z]" << endl;
+  cout << "       -t : separate images in time (default behaviour)" << endl;
+  cout << "       -x : separate images in the x direction"  << endl;
+  cout << "       -y : separate images in the y direction"  << endl;
+  cout << "       -z : separate images in the z direction" << endl;
 }
 
-
 template <class T>
 int fmrib_main(int argc, char *argv[])
 {
@@ -69,4 +68,3 @@ int main(int argc,char *argv[])
   return call_fmrib_main(dtype(iname),argc,argv); 
 }
 
-