Fix internal links (#255)

pull/256/head
simonsan 3 years ago committed by GitHub
parent 680509aeee
commit a1523995ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,5 +32,5 @@ impl<T> Vec<T> {
## See also
The [builder pattern](../patterns/builder.md) for constructing objects where
there are multiple configurations.
The [builder pattern](../patterns/creational/builder.md) for constructing objects
where there are multiple configurations.

@ -87,4 +87,4 @@ resources in an unexpected state.
## See also
[RAII](../patterns/RAII.md).
[RAII guards](../patterns/behavioural/RAII.md).

@ -84,7 +84,8 @@ Read`
## See also
* [Finalisation in destructors](dtor-finally.md) and
[RAII guards](../patterns/RAII.md) can benefit from tight control over lifetimes.
[RAII guards](../patterns/behavioural/RAII.md) can benefit from tight control over
lifetimes.
* For conditionally filled `Option<&T>`s of (mutable) references, one can
initialize an `Option<T>` directly and use its [`.as_ref()`] method to get an
optional reference.

Loading…
Cancel
Save