Skip to content

Commit c9d48ce

Browse files
Abseil Teamliujinye-sys
authored andcommitted
Add semicolon at the end of the line on code example
PiperOrigin-RevId: 530445615 Change-Id: I0c112773e7f42989840cb8b915167ade8833ef73
1 parent 0f2636e commit c9d48ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

absl/status/statusor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class ABSL_MUST_USE_RESULT StatusOr;
146146
//
147147
// absl::StatusOr<int> i = GetCount();
148148
// if (i.ok()) {
149-
// updated_total += *i
149+
// updated_total += *i;
150150
// }
151151
//
152152
// NOTE: using `absl::StatusOr<T>::value()` when no valid value is present will

0 commit comments

Comments
 (0)