Skip to content

Commit 20432b8

Browse files
authored
Fixed three typos. (#1474)
1 parent eea5cd6 commit 20432b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/assy.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ final solution. In an underconstrained system the solver may not move an object
396396
contribute to the cost function, or if multiple solutions exist (ie. multiple instances
397397
where the cost function is at a minimum) initial locations can cause the solver to converge on one
398398
particular solution. For very complicated assemblies setting approximately correct initial locations
399-
can also reduce the computational time requred.
399+
can also reduce the computational time required.
400400

401401

402402
Constraints
@@ -405,7 +405,7 @@ Constraints
405405
Constraints are often a better representation of the real world relationship the user wants to
406406
model than directly supplying locations. In the above example the real world relationship is that
407407
the bottom face of each cone should touch, which can be modelled with a Plane constraint. When the
408-
user provides explicit locations (instead of constraints) then they are also reponsible for updating
408+
user provides explicit locations (instead of constraints) then they are also responsible for updating
409409
them when, for example, the location of ``cone1`` changes.
410410

411411
When at least one constraint is supplied and the method :meth:`~cadquery.Assembly.solve` is run, an

doc/primer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ where ``a_sketch.arc((1, 2), (2, 3))`` would be dispatched to one method but ``a
369369
not use keyword arguments to specify positional parameters. For example, you **should not** write
370370
``a_sketch.arc(p1=(1, 2), p2=(2, 3), p3=(3, 4))``, instead you should use the previous example.
371371
Note CadQuery makes an attempt to fall back on the first registered multimethod in the event of a
372-
dispatch error, but it is still best practise to not use keyword arguments to specify positional
372+
dispatch error, but it is still best practice to not use keyword arguments to specify positional
373373
arguments in CadQuery.
374374

375375
An Introspective Example

0 commit comments

Comments
 (0)