Skip to content

Commit 8720eba

Browse files
author
Kyu Hyun Chang
committed
Replace a single character string literal with a character
1 parent 722241b commit 8720eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/type_helper.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pbutil::Status TypeHelper::ResolveFieldPath(
139139
std::vector<const pb::Field*>* field_path_out) const {
140140
// Split the field names & call ResolveFieldPath()
141141
const std::vector<std::string> field_names =
142-
absl::StrSplit(field_path_str, ".", absl::SkipEmpty());
142+
absl::StrSplit(field_path_str, '.', absl::SkipEmpty());
143143
return ResolveFieldPath(type, field_names, field_path_out);
144144
}
145145

0 commit comments

Comments
 (0)