Skip to content

Commit e1aedad

Browse files
author
Christopher Doris
committed
documentation
1 parent 00b0e7a commit e1aedad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/pythoncall.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,21 +283,21 @@ PythonCall.Deps.user_deps_file
283283

284284
### Example
285285

286-
See https://github.com/cjdoris/FAISS.jl for an example package which wraps the Python FAISS
286+
See [https://github.com/cjdoris/Faiss.jl] for an example package which wraps the Python FAISS
287287
package.
288288

289289
### Precompilation
290290

291291
You may not interact with Python during module precompilation. Therefore, instead of
292-
```
292+
```julia
293293
module MyModule
294294
using PythonCall
295295
const foo = pyimport("foo")
296296
bar() = foo.bar() # will crash when called
297297
end
298298
```
299299
you must do
300-
```
300+
```julia
301301
module MyModule
302302
using PythonCall
303303
const foo = PythonCall.pynew() # initially NULL

0 commit comments

Comments
 (0)