diff --git a/aconversions/src/aconversion/aconversion.cpp b/aconversions/src/aconversion/aconversion.cpp
index bbeb5a9732d90fe30ce4ca31cc9c4d021d4212ab..6bcd97c276762bd66e6a9dfa277f273a84a285f8 100644
--- a/aconversions/src/aconversion/aconversion.cpp
+++ b/aconversions/src/aconversion/aconversion.cpp
@@ -51,7 +51,8 @@ void list_algorithms( void )
     cout << " | +- 'glushkov' [Default] - Converts to finite automata using Gluskov's NFA algorithm." << endl;
 
     cout << " +- RE to RG:" << endl;
-    cout << " | +- 'brzozowski' [Default] - Converts to right regular grammar using Brzozowski's Derivation Method." << endl;
+    cout << " | +- 'brzozowskirrg' - Converts to right regular grammar using Brzozowski's Derivation Method." << endl;
+    cout << " | +- 'glushkovrrg' [Default] - Converts to right regular grammar using Glushkov's algorithm." << endl;
 
     cout << " +- RG to FA:" << endl;
     cout << " | +- 'rg' [Default] - Converts right or left regular grammar to finite automata." << endl;