gplugin/gplugin

Fix some issues found in review
feature/find-newest-plugin
2020-04-16, Gary Kramlich
ac386374379f
Parents 5e14450e4ba0
Children 340ac4280635
Fix some issues found in review
--- a/gplugin/gplugin-manager.c Sun Apr 12 02:45:51 2020 -0500
+++ b/gplugin/gplugin-manager.c Thu Apr 16 20:22:43 2020 -0500
@@ -1747,7 +1747,7 @@
* gplugin_manager_find_plugin_with_newest_version:
* @id: The id of the plugin to find.
*
- * Calls gplugin_manager_find_plugins() with @id, and then returns the Plugins
+ * Calls gplugin_manager_find_plugins() with @id, and then returns the plugins
* with the highest version number or %NULL if no plugins with @id are found.
*
* Returns: (transfer full): The #GPluginPlugin with an id of @id that has the
@@ -1777,7 +1777,7 @@
plugin_b = GPLUGIN_PLUGIN(l->data);
info_b = gplugin_plugin_get_info(plugin_b);
- /* if this is the first plugin we've found, set the a values and
+ /* If this is the first plugin we've found, set the plugin_a values and
* continue.
*/
if(!GPLUGIN_IS_PLUGIN(plugin_a)) {
@@ -1789,7 +1789,7 @@
continue;
}
- /* at this point, we've seen another plugin, so we need to compare
+ /* At this point, we've seen another plugin, so we need to compare
* their versions.
*/
version_b = gplugin_plugin_info_get_version(info_b);