From c4facbbae8a7fafe536cdb820056b354720770e4 Mon Sep 17 00:00:00 2001 From: Bram Buitendijk Date: Fri, 16 Jun 2023 16:44:06 +0200 Subject: [PATCH] Update README.md alternatively, maybe you left out a `try` before the gerund? --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d8afc9..33c65b1 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ You can optionally pass configuration parameters upon loading a store, as follow store = stam.AnnotationStore(file="example.stam.json", config={"debug": True}) ``` -Once loaded, you can retrieving anything by its public ID: +Once loaded, you can retrieve anything by its public ID: ```python annotation = store.annotation("my-annotation") @@ -65,7 +65,7 @@ key = annotationset.key("my-key") data = annotationset.annotationdata("my-data") ``` -You can also iterating through all annotations in the store, and outputting a simple tab separated format: +You can also iterate through all annotations in the store, and output a simple tab separated format: ```python for annotation in store.annotations():