Skip to content

Commit

Permalink
Fix typos (#344)
Browse files Browse the repository at this point in the history
Signed-off-by: Shameek Ganguly <shameekarcanesphinx@gmail.com>
  • Loading branch information
shameekganguly committed May 19, 2023
1 parent 7d5ef01 commit 460d563
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion proto/gz/msgs/entity.proto
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ message Entity
/// \brief Optional header data
Header header = 1;

/// \brief Entity unique identifier accross all types. Defaults to null
/// \brief Entity unique identifier across all types. Defaults to null
/// entity (0).
uint64 id = 2;

Expand Down
2 changes: 1 addition & 1 deletion proto/gz/msgs/fuel_metadata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ message FuelMetadata
/// \brief Authors of this resource.
repeated Contact authors = 6;

/// \brief Legal information, such as copyright and license specificiations.
/// \brief Legal information, such as copyright and license specifications.
Legal legal = 7;

/// \brief Tags for a resource.
Expand Down
6 changes: 3 additions & 3 deletions proto/gz/msgs/marker.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ message Marker
/// \brief How to interpret the data.
enum Action
{
/// \brief Use this action to create a new marker or modify an exisiting
/// \brief Use this action to create a new marker or modify an existing
/// marker. A marker will be created if the provided id does not match
/// an exisiting marker, otherwise the marker with the provided id will
/// an existing marker, otherwise the marker with the provided id will
/// be modified.
ADD_MODIFY = 0;

/// \brief Use this action to delete an existing marking.
/// Nothing will happend if the provided id does not match an exisiting
/// Nothing will happened if the provided id does not match an existing
/// marker.
DELETE_MARKER = 1;

Expand Down
2 changes: 1 addition & 1 deletion proto/gz/msgs/rest_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ message RestResponse
{
enum Type
{
/// \brief Rest service call was successfull
/// \brief Rest service call was successful
SUCCESS = 0;

/// \brief Error calling rest service
Expand Down
2 changes: 1 addition & 1 deletion src/Factory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class DynamicFactory

//////////////////////////////////////////////////
/// \brief Load descriptors into the descriptor pool.
/// \param[in] _paths A set of directories containing .desc decriptor files.
/// \param[in] _paths A set of directories containing .desc descriptor files.
/// Each directory should be separated by ":".
public: void LoadDescriptors(const std::string &_paths)
{
Expand Down
5 changes: 3 additions & 2 deletions src/gz.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* */
*
*/

#ifdef _MSC_VER
#pragma warning(push)
Expand Down Expand Up @@ -62,7 +63,7 @@ void cmdMsgInfo(const char *_msg)
}
else
{
std::cerr << "Messsage type is null\n";
std::cerr << "Message type is null\n";
}
}

Expand Down

0 comments on commit 460d563

Please sign in to comment.