Skip to content

Commit adb4ec2

Browse files
authored
Fix Minor Spelling Mistakes (#260)
Signed-off-by: David V. Lu <[email protected]>
1 parent b0f86d4 commit adb4ec2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

pluginlib/CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Changelog for package pluginlib
149149
* remove extra semicolon to fix pedantic warning (`#103 <https://github.com/ros/pluginlib/issues/103>`_)
150150
* use new class_loader header names (`#99 <https://github.com/ros/pluginlib/issues/99>`_)
151151
* adjust library search to work on windows, warn about lib prefix (`#97 <https://github.com/ros/pluginlib/issues/97>`_)
152-
* vs2015 doesnt support __has_include, VS2015 and 2017 have both <files… (`#96 <https://github.com/ros/pluginlib/issues/96>`_)
152+
* vs2015 doesn't support __has_include, VS2015 and 2017 have both <files… (`#96 <https://github.com/ros/pluginlib/issues/96>`_)
153153
* move pluginlib in its own folder (port 83 to ros2 branch) (`#95 <https://github.com/ros/pluginlib/issues/95>`_)
154154
* Contributors: Mikael Arguedas, William Woodall, jerry73204
155155

@@ -416,7 +416,7 @@ Changelog for package pluginlib
416416
* fixed tinyxml
417417
* converting to unary stack (separated from common)
418418
* applied patch from 4923, to support boost 1.46
419-
* patch from Nick Butko osx compatability
419+
* patch from Nick Butko osx compatibility
420420
* adding unittest melonee forgot to commit
421421
* adding pluginlib tests
422422
* patch for osx linking `#4094 <https://github.com/ros/pluginlib/issues/4094>`_
@@ -431,7 +431,7 @@ Changelog for package pluginlib
431431
* adding warning about deprecated macro PLUGINLIB_REGISTER_CLASS
432432
* pluginlib now takes pkg/type arguments, new macro PLUGINLIB_DECLARE_CLASS
433433
* pluginlib now robust to malformed manifests
434-
* Adding more descriptive error messages when libaries fail to load
434+
* Adding more descriptive error messages when libraries fail to load
435435
* Remove use of deprecated rosbuild macros
436436
* doc review completed http://www.ros.org/wiki/pluginlib/Reviews/2009-10-06_Doc_Review
437437
* fixing documentation link

pluginlib/cmake/pluginlib_enable_plugin_testing.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set(PLUGINLIB_ENABLE_PLUGIN_TESTING_DIR "${CMAKE_CURRENT_LIST_DIR}")
1919
# Enable testing plugins by mock-installing needed files to the build folder.
2020
#
2121
# Pluginlib needs a certain folder structure in the ament_index to recognize
22-
# the existance of a package and its exported plugins.
22+
# the existence of a package and its exported plugins.
2323
# This structure must exist at test time in order for unit tests to load
2424
# plugins.
2525
# The macro `pluginlib_export_plugin_description_file()` sets up this structure
@@ -143,7 +143,7 @@ function(pluginlib_enable_plugin_testing)
143143
list(APPEND input_content "")
144144
list(APPEND output_files "${fake_install_dir}/package.xml")
145145

146-
# Add blank file indicating existance of package in the ament index
146+
# Add blank file indicating existence of package in the ament index
147147
list(APPEND input_files "")
148148
list(APPEND input_content "")
149149
list(APPEND output_files "${prefix}/share/ament_index/resource_index/packages/${ARG_PACKAGE_NAME}")

pluginlib/include/pluginlib/class_loader.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class ClassLoader : public ClassLoaderBase
107107
/**
108108
* Implicitly calls loadLibraryForClass() to increment the library counter.
109109
*
110-
* \attention The ownership is transfered to the caller, which is responsible
110+
* \attention The ownership is transferred to the caller, which is responsible
111111
* for deleting the instance and calling unloadLibraryForClass()
112112
* (in order to decrement the associated library counter and unloading it
113113
* if it is no more used).
@@ -275,7 +275,7 @@ class ClassLoader : public ClassLoaderBase
275275
/// Get the package name from a path to a plugin XML file.
276276
std::string getPackageFromPluginXMLFilePath(const std::string & path);
277277

278-
/// Join two filesystem paths together utilzing appropriate path separator.
278+
/// Join two filesystem paths together utilizing appropriate path separator.
279279
std::string joinPaths(const std::string & path1, const std::string & path2);
280280

281281
/// Parse a plugin XML file.

pluginlib/include/pluginlib/class_loader_imp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ void ClassLoader<T>::processSingleXMLPluginFile(
674674
std::string library_path(path);
675675
if (0 == library_path.size()) {
676676
RCUTILS_LOG_ERROR_NAMED("pluginlib.ClassLoader",
677-
"Failed to find Path Attirbute in library element in %s", xml_file.c_str());
677+
"Failed to find Path Attribute in library element in %s", xml_file.c_str());
678678
continue;
679679
}
680680

0 commit comments

Comments
 (0)