yeandy commented on code in PR #23224:
URL: https://github.com/apache/beam/pull/23224#discussion_r971263295


##########
website/www/site/content/en/documentation/programming-guide.md:
##########
@@ -3757,6 +3762,11 @@ Individual nested fields can be specified using the dot 
operator. For example, t
 {{< highlight java >}}
 purchases.apply(Select.fieldNames("shippingAddress.postCode"));
 {{< /highlight >}}
+       
+{{< highlight py >}} 
+input_pc = ... # {"user_id":...,"shipping_address":"post_code": ..., 
...,"bank": ..., "purchase_amount": ...}

Review Comment:
   ```suggestion
   input_pc = ... # {"user_id": ..., "shipping_address":"post_code": ..., 
"bank": ..., "purchase_amount": ...}
   ```



##########
website/www/site/content/en/documentation/programming-guide.md:
##########
@@ -3767,6 +3777,11 @@ shipping-address fields one would write
 purchases.apply(Select.fieldNames("shippingAddress.*"));
 {{< /highlight >}}
 
+{{< highlight py >}} 
+input_pc = ... # {"user_id":...,"shipping_address":"post_code": ..., 
...,"bank": ..., "purchase_amount": ...}

Review Comment:
   ```suggestion
   input_pc = ... # {"user_id": ..., "shipping_address":"post_code": ..., 
"bank": ..., "purchase_amount": ...}
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to