Merge pull request #18998 from ucasFL/comment

fix some wrong words in comment
This commit is contained in:
alexey-milovidov 2021-01-13 23:46:53 +03:00 committed by GitHub
commit ab15a936e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ public:
}; };
/// Index is used to: /// Index is used to:
/// * find Node buy it's result_name /// * find Node by it's result_name
/// * specify order of columns in result /// * specify order of columns in result
/// It represents a set of available columns. /// It represents a set of available columns.
/// Removing of column from index is equivalent to removing of column from final result. /// Removing of column from index is equivalent to removing of column from final result.

View File

@ -62,7 +62,7 @@ public:
using Actions = std::vector<Action>; using Actions = std::vector<Action>;
/// This map helps to find input position bu it's name. /// This map helps to find input position by it's name.
/// Key is a view to input::result_name. /// Key is a view to input::result_name.
/// Result is a list because it is allowed for inputs to have same names. /// Result is a list because it is allowed for inputs to have same names.
using NameToInputMap = std::unordered_map<std::string_view, std::list<size_t>>; using NameToInputMap = std::unordered_map<std::string_view, std::list<size_t>>;