Skip to content

Commit 1d318ec

Browse files
Fixed speeling issues in markdown documents
1 parent 4105a45 commit 1d318ec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/utility-guides/BatchProcessing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ This will call the other two functions in order to successfully process a batch.
6666
6. After the ID is stored, it clicks on the ID to get to the Manage Active Batch page
6767
7. From Here it calls the `prepare_and_print_batch` function.
6868
1. If `get_subjects_from_pdf` was set to False it calls `get_nhs_no_from_batch_id`, which is imported from *utils.oracle.oracle_specific_functions*, to get the subjects from the batch and stores them as a pandas DataFrame - **nhs_no_df**
69-
2. For more Info on `get_nhs_no_from_batch_id` please look at: [PDFReader](PDFReader.md)
69+
2. For more Info on `get_nhs_no_from_batch_id` please look at: <!-- vale off-->[PDFReader](PDFReader.md)<!-- vale on-->
7070
8. Once this is complete it calls the `check_batch_in_archived_batch_list` function
7171
9. Finally, once that function is complete it calls `verify_subject_event_status_by_nhs_no` which is imported from *utils/screening_subject_page_searcher*
7272

docs/utility-guides/PDFReader.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The PDF Reader utility allows for reading of PDF files and performing specific t
77
- [Utility Guide: PDF Reader](#utility-guide-pdf-reader)
88
- [Table of Contents](#table-of-contents)
99
- [Functions Overview](#functions-overview)
10-
- [Ectract NHS No From PDF](#ectract-nhs-no-from-pdf)
10+
- [Extract NHS No From PDF](#extract-nhs-no-from-pdf)
1111
- [Required Arguments](#required-arguments)
1212
- [How This Function Works](#how-this-function-works)
1313

@@ -17,7 +17,7 @@ For this utility we have the following functions/methods:
1717

1818
- `extract_nhs_no_from_pdf`
1919

20-
### Ectract NHS No From PDF
20+
### Extract NHS No From PDF
2121

2222
This is the main function that is called in order to process a batch.
2323
This will call the other two functions in order to successfully process a batch.
@@ -31,5 +31,5 @@ This will call the other two functions in order to successfully process a batch.
3131
#### How This Function Works
3232

3333
1. It starts off by storing the PDF file as a PdfReader object, this is from the `pypdf` package.
34-
2. Then it loops thrpugh each page.
34+
2. Then it loops through each page.
3535
3. If it finds the string *"NHS No"* in the page, it extracts it and removes any whitespaces, then adds it to a pandas DataFrame - `nhs_no_df`

0 commit comments

Comments
 (0)