Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jano42 committed Dec 2, 2019
1 parent 6ad1a3a commit 769cafd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpp/src/Manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4825,9 +4825,9 @@ return "";
// <Manager::GetMetaDataId>
// Retrieve metadata from its name
//-----------------------------------------------------------------------------
Node::MetaDataFields Manager::GetMetaDataId(const string& metaDataFiledtoParse)
Node::MetaDataFields Manager::GetMetaDataId(const string& metaDataFiledToParse)
{
return Node::GetMetaDataId(metaDataFiledtoParse);
return Node::GetMetaDataId(metaDataFiledToParse);
}


Expand Down
4 changes: 2 additions & 2 deletions cpp/src/Manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -2647,10 +2647,10 @@ namespace OpenZWave
string const GetMetaData(uint32 const _homeId, uint8 const _nodeId, Node::MetaDataFields _metadata);
/**
* \brief Retrieve metadata from its name
* \param metaDataFiledtoParse the string to parse (careful, case sensitive)
* \param metaDataFiledToParse the string to parse (careful, case sensitive)
* \return the found metaDataField if parsing is successful, or MetaData_Invalid
*/
Node::MetaDataFields GetMetaDataId(const string & metaDataFiledtoParse);
Node::MetaDataFields GetMetaDataId(const string & metaDataFiledToParse);
/**
* \brief Get the MetaData string representation
* \param metaData the metaData enum
Expand Down

0 comments on commit 769cafd

Please sign in to comment.