From 97b785e209e6765cd9e9da03e78cd5206f08e588 Mon Sep 17 00:00:00 2001 From: Alexander Seiler Date: Thu, 11 May 2023 03:27:16 +0200 Subject: [PATCH] Correct two typos Signed-off-by: Alexander Seiler --- docs/src/faq.md | 2 +- src/convert.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/faq.md b/docs/src/faq.md index 5de753d3..2a661379 100644 --- a/docs/src/faq.md +++ b/docs/src/faq.md @@ -59,7 +59,7 @@ A solution is to ensure that `juliacall` is imported before `torch`. Related issues: [#215](https://github.com/cjdoris/PythonCall.jl/issues/215) -## `ccall requries the compiler` error when importing some Python libraries +## `ccall requires the compiler` error when importing some Python libraries On some systems, you may see an error like the following when import e.g. `matplotlib` before `juliacall`: ``` diff --git a/src/convert.jl b/src/convert.jl index 658fa0e6..498293a5 100644 --- a/src/convert.jl +++ b/src/convert.jl @@ -35,7 +35,7 @@ then by the specificity of `t` (e.g. `bool` is more specific than `int` is more than `object`) then by the order they were added. The rules are tried in turn until one succeeds. -### Implemeting `func` +### Implementing `func` `func` is called as `func(S, x::Py)` for some `S <: T`.