Skip to content

Commit bfd3cb6

Browse files
birkenfelddavidhewittkngwyu
authored
Apply suggestions from code review
Co-Authored-By: David Hewitt <[email protected]> Co-Authored-By: Yuji Kanagawa <[email protected]>
1 parent 069ee1e commit bfd3cb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guide/src/types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Overview of PyO3 Python object types
22

33
On first glance, PyO3 provides a huge number of different types that can be used
4-
to wrap or refer to Python objects. This page tries to give an overview of
4+
to wrap or refer to Python objects. This page gives an overview of
55
their meaning, with examples when each type is best used.
66

77
* explain: pyclass
@@ -67,7 +67,7 @@ required for calling Python API on it.
6767
### `PyCell<SomeType>`
6868

6969
**Represents:** a reference to a `PyClass` instance which is wrapped in a Python
70-
object. The cell part is an analog to Rust's `RefCell` to allow access to
70+
object. The cell part is an analog to stdlib's [`RefCell`](https://doc.rust-lang.org/std/cell/struct.RefCell.html) to allow access to
7171
`&mut` references.
7272

7373
**Used:** for accessing pure-Rust API of the instance (members and functions

0 commit comments

Comments
 (0)