You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2020/09/25 20:13:35 UTC

[beam] branch master updated: spannerio.py doc typo fix

This is an automated email from the ASF dual-hosted git repository.

altay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b3b86a  spannerio.py doc typo fix
     new 9684d86  Merge pull request #12940 from derrickqin/py-spanner-doc-fix
3b3b86a is described below

commit 3b3b86a64c8b95754fb6b0fb16c0afeeaf6908ea
Author: Derrick Qin <qi...@gmail.com>
AuthorDate: Fri Sep 25 23:39:42 2020 +1000

    spannerio.py doc typo fix
---
 sdks/python/apache_beam/io/gcp/experimental/spannerio.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/io/gcp/experimental/spannerio.py b/sdks/python/apache_beam/io/gcp/experimental/spannerio.py
index b575f6e..29b8cc06 100644
--- a/sdks/python/apache_beam/io/gcp/experimental/spannerio.py
+++ b/sdks/python/apache_beam/io/gcp/experimental/spannerio.py
@@ -127,7 +127,7 @@ For example:::
 
   mutations = [
                 WriteMutation.insert(table='user', columns=('name', 'email'),
-                values=[('sara'. 'sara@dev.com')])
+                values=[('sara', 'sara@dev.com')])
               ]
   _ = (p
        | beam.Create(mutations)