Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proto/shared/shared.data_type.proto
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ message DataTypeIdentifier {

message GenericType {
DataTypeIdentifier data_type_identifier = 1;
repeated GenericMapper generic_mapper = 2;
repeated GenericMapper generic_mappers = 2;
}

message GenericMapper {
Expand Down
2 changes: 1 addition & 1 deletion proto/shared/shared.runtime_function.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ message FunctionGenericMapper {
}
// can only be a generic key
string target = 3;
optional string paramter_id = 4;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In RuntimeParameterDefinition we use runtime_name as identifier. Should this also match that and be called parameter_name?

optional string parameter_id = 4;
}

// Definition of a function used for execution
Expand Down