Skip to content

Commit efd0d5f

Browse files
committed
Use https
1 parent 0e6796e commit efd0d5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vignettes/intro.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ tesseract_info()
5757

5858
By default the R package only includes English training data. Windows and Mac users can install additional training data using `tesseract_download()`. Let's OCR a screenshot from Wikipedia in Dutch (Nederlands)
5959

60-
[![utrecht](http://jeroen.github.io/images/utrecht2.png)](https://nl.wikipedia.org/wiki/Geschiedenis_van_de_stad_Utrecht)
60+
[![utrecht](https://jeroen.github.io/images/utrecht2.png)](https://nl.wikipedia.org/wiki/Geschiedenis_van_de_stad_Utrecht)
6161

6262
```{r, eval=FALSE}
6363
# Only need to do download once:
@@ -67,7 +67,7 @@ tesseract_download("nld")
6767
```{r eval = has_nld}
6868
# Now load the dictionary
6969
(dutch <- tesseract("nld"))
70-
text <- ocr("http://jeroen.github.io/images/utrecht2.png", engine = dutch)
70+
text <- ocr("https://jeroen.github.io/images/utrecht2.png", engine = dutch)
7171
cat(text)
7272
```
7373

0 commit comments

Comments
 (0)