Skip to content

Commit b6d00e6

Browse files
committed
Formatting in doc comment.
1 parent 08bf45f commit b6d00e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/context.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ use pyo3::{
1515
/// let c = Context::new();
1616
///
1717
/// c.run(python! {
18-
/// foo = 5
18+
/// foo = 5
1919
/// });
2020
///
2121
/// c.run(python! {
22-
/// assert foo == 5
22+
/// assert foo == 5
2323
/// });
2424
/// ```
2525
///
@@ -33,7 +33,7 @@ use pyo3::{
3333
/// c.set("x", 13);
3434
///
3535
/// c.run(python! {
36-
/// foo = x + 2
36+
/// foo = x + 2
3737
/// });
3838
///
3939
/// assert_eq!(c.get::<i32>("foo"), 15);

0 commit comments

Comments
 (0)