Skip to content

Commit cdf8155

Browse files
committed
Fix docstrings
1 parent f237ef4 commit cdf8155

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All changes to this project will be noted in this file.
44

5+
## Version 0.1.2
6+
7+
Fixed docstrings
8+
59
## Version 0.1.1
610

711
### Fixes

bagel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "Apache-2.0"
77
name = "bagel"
88
readme = "../README.md"
99
repository = "https://github.com/skytable/bagel"
10-
version = "0.1.1"
10+
version = "0.1.2"
1111

1212
[dependencies]
1313
dough = "0.1.1"

bagel/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ pub use dough::Constdef;
9999
///
100100
/// ## Example
101101
/// ```
102-
/// use derived::Ctor;
102+
/// use bagel::Ctor;
103103
///
104104
/// #[derive(Ctor)]
105105
/// struct MyStruct {
@@ -127,7 +127,7 @@ pub use dough::Constdef;
127127
/// ### Example
128128
///
129129
/// ```
130-
/// use derived::Ctor;
130+
/// use bagel::Ctor;
131131
///
132132
/// #[derive(Ctor)]
133133
/// #[ctor_const]
@@ -150,7 +150,7 @@ pub use dough::Ctor;
150150
///
151151
/// ## Example
152152
/// ```
153-
/// use derived::Gtor;
153+
/// use bagel::Gtor;
154154
/// #[derive(Gtor)]
155155
/// struct MyStruct {
156156
/// name: String,
@@ -178,7 +178,7 @@ pub use dough::Ctor;
178178
/// ### Example
179179
///
180180
/// ```
181-
/// use derived::{Ctor, Gtor};
181+
/// use bagel::{Ctor, Gtor};
182182
/// #[derive(Ctor, Gtor)]
183183
/// #[gtor(get, get_mut)]
184184
/// pub struct Mutable {
@@ -225,7 +225,7 @@ pub use dough::Gtor;
225225
///
226226
/// ## Example
227227
/// ```
228-
/// use derived::Stor;
228+
/// use bagel::Stor;
229229
/// #[derive(Stor)]
230230
/// struct MyStruct {
231231
/// name: String,

0 commit comments

Comments
 (0)