diff --git a/GUI/Application/Application.cpp b/GUI/Application/Application.cpp
index f2c991480084a03177226d550e546ac0d4ecd4b9..d99d18019fdc8b2827de06bda2521f026d862a93 100644
--- a/GUI/Application/Application.cpp
+++ b/GUI/Application/Application.cpp
@@ -24,7 +24,7 @@ Application::Application(int& argc, char** argv)
 {
     setApplicationName("BornAgain");
     setApplicationVersion(GUI::Helpers::getBornAgainVersionString());
-    setOrganizationName("Forschungszentrum Jülich, Scientific Computing Group at MLZ Garching");
+    setOrganizationName("BornAgain");
 
     if (!GUI::Utils::OS::HostOsInfo::isMacHost())
         QApplication::setWindowIcon(QIcon(":/images/BornAgain.ico"));
diff --git a/auto/Wrap/doxygenFit.i b/auto/Wrap/doxygenFit.i
index 630680290a5f8335abbaa8cb055cee117cb5198c..ec44a379932bf9ed2bac3713016fe44e5f64ec6d 100644
--- a/auto/Wrap/doxygenFit.i
+++ b/auto/Wrap/doxygenFit.i
@@ -10097,7 +10097,7 @@ Clone a function. Each derived class must implement their version of the Clone m
 // File: classMultiOption.xml
 %feature("docstring") MultiOption "
 
-Stores a single option for minimization algorithm. Int, double, string values are available. Relies on boost::variant, will be switched to std::variant in C++-17.
+Stores a single option for minimization algorithm. Int, double, string values are available.
 
 C++ includes: MultiOption.h
 ";
@@ -10133,9 +10133,16 @@ Returns the option's value.
 Returns the option's default value (i.e. used during construction) 
 ";
 
+%feature("docstring")  MultiOption::value_str "std::string MultiOption::value_str()
+
+Returns a string representation of the option's value.
+
+Sets the value of option from string. 
+";
+
 %feature("docstring")  MultiOption::setFromString "void MultiOption::setFromString(const std::string &value)
 
-Sets the value of option from string. TODO find more elegant way (without if/else and boost::lexical_cast 
+Sets the value of option from string. 
 ";