Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
docs: fix typos (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Jun 11, 2021
1 parent cde297c commit 788176f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/v1/language_syntax_gcs.py
Expand Up @@ -62,7 +62,7 @@ def sample_analyze_syntax(gcs_content_uri):
u"Location of this token in overall document: {}".format(text.begin_offset)
)
# Get the part of speech information for this token.
# Parts of spech are as defined in:
# Part of speech is defined in:
# http://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf
part_of_speech = token.part_of_speech
# Get the tag, e.g. NOUN, ADJ for Adjective, et al.
Expand Down
2 changes: 1 addition & 1 deletion samples/v1/language_syntax_text.py
Expand Up @@ -61,7 +61,7 @@ def sample_analyze_syntax(text_content):
u"Location of this token in overall document: {}".format(text.begin_offset)
)
# Get the part of speech information for this token.
# Parts of spech are as defined in:
# Part of speech is defined in:
# http://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf
part_of_speech = token.part_of_speech
# Get the tag, e.g. NOUN, ADJ for Adjective, et al.
Expand Down

0 comments on commit 788176f

Please sign in to comment.