diff --git a/arand/src/arand.cpp b/arand/src/arand.cpp
index f8e895687b8785878e7566fa59e3d6cd6b4d755c..f7fbdb386adef63d4bbb64e55e16499abdb2ae4f 100644
--- a/arand/src/arand.cpp
+++ b/arand/src/arand.cpp
@@ -20,15 +20,12 @@ using namespace std;
 
 void help( void )
 {
-    cout << endl;
-    cout << "arand 0.01" << endl;
-    cout << "Generates random automata." << endl;
-    cout << "Usage: arand -n -d -a" << endl << endl;
-    cout << "  -n, --nodes=NODES \t Number of nodes of automata." << endl;
-    cout << "  -d, --density=DENSITY \t Percentage of transitions to generate. 1.0 = automata graph is tree, 100.0 = every possible transition." << endl;
-    cout << "  -a, --alphabet=ALPHABET \t If numerical, generates random alphabet of given size, else comma separated list of alphabet symbols." << endl;
-
-    cout << endl;
+    cout << "arand" << endl;
+    cout << "Generates random automaton." << endl;
+    cout << "Usage: arand -n=N -d=D -a=A" << endl << endl;
+    cout << "  -n, --nodes=N \t Number of nodes of automata." << endl;
+    cout << "  -d, --density=D \t Percentage of transitions to generate. 1.0 = automata graph is tree, 100.0 = every possible transition." << endl;
+    cout << "  -a, --alphabet=A \t Alphabet size." << endl;
 }