================
@@ -317,9 +317,9 @@ example:
 
 .. code:: cpp
 
-   void f(std::vector<absl::StatusOr<int>> sors) {
-     if (sors[0].ok()) {
-       use(*sors[0]); // unsafe: it is unclear whether the status of `sors[0]` 
is ok.
+   void f(std::vector<absl::StatusOr<int>> xs) {
----------------
rohanjr wrote:

Yeah, my intent was `xs` like a plural (I think this is a Haskell-ism). But 
since the point of https://abseil.io/tips/181 is that the variable name should 
not encode the type, it makes sense to use a generic `x` everywhere.

https://github.com/llvm/llvm-project/pull/176498
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to