From 18b5e0c6a5059e3c55a4e47931f50b48cd3530fe Mon Sep 17 00:00:00 2001 From: sorin-postelnicu Date: Sun, 13 Aug 2023 19:57:12 +0200 Subject: [PATCH] Corrected minor typo in 01_Concept_of_the_extractor.md (#47) Replaced someDataFiled with someDataField --- docs/01_Concept_of_the_extractor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01_Concept_of_the_extractor.md b/docs/01_Concept_of_the_extractor.md index ed51ded..c311799 100644 --- a/docs/01_Concept_of_the_extractor.md +++ b/docs/01_Concept_of_the_extractor.md @@ -44,7 +44,7 @@ class MyExtractor extends FutureExtractor { } @Override - public String someDataFiled() + public String someDataField() throws ExtractionException { //The exception needs to be thrown if something failed // get piece of information and return it }