commit a995c59c3cc96f740a245ed56f6a976b6a92fa85 Author: vaydheesh Date: Mon Aug 12 12:37:19 2019 +0530 readme: minor fix diff --git a/README.md b/README.md index 29a8292..90b98e0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ ### Analysis Performing Morphological Analysis -Method 1: Create `Analyzer` object and call its `analyze()` method. +Method 1: Create a `Analyzer` object and call its `analyze` method. ``` In [1]: import apertium In [2]: a = apertium.Analyzer('en') @@ -40,7 +40,7 @@ Out[2]: cats/cat ### Generation Performing Morphological Generation -Method 1: Create `Generator` and call its `generate()` method. +Method 1: Create a `Generator` object and call its `generate` method. ``` In [1]: import apertium In [2]: g = apertium.Generator('en') @@ -62,7 +62,7 @@ In [2]: apertium.append_pair_path('..') ``` ### Tagger -Method 1: Create `Tagger` object and call its `tag` method. +Method 1: Create a `Tagger` object and call its `tag` method. ``` In [1]: import apertium In [2]: tagger = apertium.Tagger('eng') @@ -77,7 +77,7 @@ Out[2]: [cats/cat] ``` ### Translation -Method 1: Create `Translator` object and call its `translate()` method. +Method 1: Create a `Translator` object and call its `translate` method. ``` In [1]: import apertium In [2]: t = apertium.Translator('eng', 'spa')