Skip to content

Commit

Permalink
[Chore][C++] fix err message (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasinliu authored Jan 26, 2024
1 parent 106912d commit 84e0880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Result<T> Edge::property(const std::string& property) const {
} else {
if (properties_.find(property) == properties_.end()) {
return Status::KeyError("Property with name ", property,
" does not exist in the vertex.");
" does not exist in the edge.");
}
try {
T ret = std::any_cast<T>(properties_.at(property));
Expand Down

0 comments on commit 84e0880

Please sign in to comment.