diff options
-rw-r--r-- | src/ephy-extensions-manager.c | 8 | ||||
-rw-r--r-- | src/ephy-session.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/ephy-extensions-manager.c b/src/ephy-extensions-manager.c index 60d7dfe6e..790bf0067 100644 --- a/src/ephy-extensions-manager.c +++ b/src/ephy-extensions-manager.c @@ -140,9 +140,9 @@ G_DEFINE_TYPE_WITH_CODE (EphyExtensionsManager, ephy_extensions_manager, G_TYPE_ /** * ephy_extensions_manager_load: * @manager: an #EphyExtensionsManager - * @name: identifier of the extension to load + * @identifier: identifier of the extension to load * - * Loads the @name extension. + * Loads the extension corresponding to @identifier. **/ void ephy_extensions_manager_load (EphyExtensionsManager *manager, @@ -171,9 +171,9 @@ ephy_extensions_manager_load (EphyExtensionsManager *manager, /** * ephy_extensions_manager_unload: * @manager: an #EphyExtensionsManager - * @name: filename of extension to unload, minus "lib" and "extension.so" + * @identifier: filename of extension to unload, minus "lib" and "extension.so" * - * Unloads the extension specified by @name. + * Unloads the extension specified by @identifier. * * The extension with the same filename can afterwards be reloaded. However, * if any GTypes within the extension have changed parent types, Epiphany must diff --git a/src/ephy-session.c b/src/ephy-session.c index 3c117ad6b..7dc6be089 100644 --- a/src/ephy-session.c +++ b/src/ephy-session.c @@ -1510,7 +1510,7 @@ ephy_session_load (EphySession *session, /** * ephy_session_get_windows: - * @ephy_session: the #EphySession + * @session: the #EphySession * * Returns: the list of open #EphyWindow:s. **/ @@ -1524,7 +1524,7 @@ ephy_session_get_windows (EphySession *session) /** * ephy_session_add_window: - * @ephy_session: a #EphySession + * @session: a #EphySession * @window: a #EphyWindow * * Add a tool window to the session. #EphyWindow take care of adding |