We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832fc8e commit 0b62f5eCopy full SHA for 0b62f5e
src/miniscript/types/mod.rs
@@ -302,13 +302,13 @@ pub trait Property: Sized {
302
/// Type property of a timelock
303
fn from_time(t: u32) -> Self;
304
305
- /// Type property of a relative timelock. Default implementation simply
+ /// Type property of an absolute timelock. Default implementation simply
306
/// passes through to `from_time`
307
fn from_after(t: u32) -> Self {
308
Self::from_time(t)
309
}
310
311
- /// Type property of an absolute timelock. Default implementation simply
+ /// Type property of a relative timelock. Default implementation simply
312
313
fn from_older(t: u32) -> Self {
314
0 commit comments