Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into msvc-support
Browse files Browse the repository at this point in the history
  • Loading branch information
jamievlin committed May 19, 2024
2 parents b667156 + 8fbeeaa commit db9b295
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/asymptote.texi
Original file line number Diff line number Diff line change
Expand Up @@ -2704,7 +2704,7 @@ otherwise.

@cindex @code{inside}
@item pair inside(path p, pen fillrule=currentpen);
returns an arbitrary point strictly inside a cyclic path @code{p}
returns an arbitrary point strictly inside a nondegenerate cyclic path @code{p}
according to the fill rule @code{fillrule} (@pxref{fillrule}).

@cindex @code{strokepath}
Expand Down
4 changes: 2 additions & 2 deletions include/dec.h
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ class receiveTypedefDec : public dec {
typeParamList* params;

public:
receiveTypedefDec(position pos, typeParamList* params)
receiveTypedefDec(position pos, typeParamList* params)
: dec(pos), params(params) {}

void transAsField(coenv& e, record *r) override;
Expand Down Expand Up @@ -674,7 +674,7 @@ class fromdec : public dec {
// from a.B unravel x;
//
// Here, v->getType() will yield A and v->getLocation() will yield the
// location of the the variable a, but the record type t will be B.
// location of the variable a, but the record type t will be B.
record *t;
varEntry *v;

Expand Down

0 comments on commit db9b295

Please sign in to comment.