mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-04 09:58:27 +00:00
Update name of function parameter
This commit is contained in:
parent
fa1bd45280
commit
37810814a7
@ -81,13 +81,16 @@ pub struct OperationResult<'r, T> {
|
||||
}
|
||||
|
||||
impl<'r, T> OperationResult<'r, T> {
|
||||
pub fn vertex(self, point: impl Into<Vertex>) -> OperationResult<'r, T::Out>
|
||||
pub fn vertex(
|
||||
self,
|
||||
vertex: impl Into<Vertex>,
|
||||
) -> OperationResult<'r, T::Out>
|
||||
where
|
||||
T: CombinRight<Vertex>,
|
||||
{
|
||||
let OperationResult {
|
||||
results: (vertex,), ..
|
||||
} = self.operations.vertex(point);
|
||||
} = self.operations.vertex(vertex);
|
||||
|
||||
OperationResult {
|
||||
operations: self.operations,
|
||||
|
Loading…
Reference in New Issue
Block a user