Skip to content

Commit

Permalink
Fix a couple of typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Gene Gleyzer committed Nov 12, 2024
1 parent 39d4d81 commit 5a84542
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib_collections/src/main/x/collections/CircularArray.x
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class CircularArray<Element>
// ----- constructors --------------------------------------------------------------------------

/**
* Construct an CircularArray with an initial capacity.
* Construct a CircularArray with an initial capacity.
*
* @param initialCapacity (optional) the number of elements to initially allocate storage for
*/
Expand Down
2 changes: 1 addition & 1 deletion lib_ecstasy/src/main/x/ecstasy/collections/SkiplistSet.x
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import maps.CopyableMap;

/**
* An implementation of a [Set] that is backed by a [SkiplistMap], which implementats the "skip
* An implementation of a [Set] that is backed by a [SkiplistMap], which implements the "skip
* list" data structure.
*
* A skip list is a data structure that has logN average time for data retrieval, insertion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class DistinctCollection<Element>
Orderer? order := original.ordered(),
order != Null) {
// it's possible to optimize the iteration without realizing the set, because the
// original collection is ordered, thus idential elements will be grouped together, and
// original collection is ordered, thus identical elements will be grouped together, and
// thus a once-through iteration can be accomplished simply by remember the previously
// returned value -- after the first value has been returned, of course!
Iterator<Element> orderedIterator = original.iterator();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Lexer.Token;


/**
* A representation of types compomsed of a prefix token in front of a type.
* A representation of types composed of a prefix token in front of a type.
*/
@Abstract const PrefixTypeExpression(Token prefix, TypeExpression type)
extends TypeExpression {
Expand Down
2 changes: 1 addition & 1 deletion lib_web/src/main/x/web/AcceptList.x
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const AcceptList {
AcceptType[] always;

/**
* The AcceptTypes with a quality between 0.0 and 1.0 (excslusive).
* The AcceptTypes with a quality between 0.0 and 1.0 (exclusive).
*/
AcceptType[] maybes;

Expand Down
2 changes: 1 addition & 1 deletion lib_web/src/main/x/web/CookieConsent.x
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ const CookieConsent(Boolean necessary = False,
* @return True iff the text was successfully parsed
* @return (conditional) True indicates that "Strictly Necessary" cookies are allowed
* @return (conditional) True indicates that "Functionality"/"Preferences" cookies are allowed
* @return (conditional) True indicates that "Performance"/"Statistics" cookiesare allowed
* @return (conditional) True indicates that "Performance"/"Statistics" cookies are allowed
* @return (conditional) True indicates that "Marketing"/"Targeting" cookies are allowed
* @return (conditional) True indicates that "SocialMedia" (Third Party) cookies are allowed
* @return (conditional) True indicates that all "First Party" cookies are allowed
Expand Down

0 comments on commit 5a84542

Please sign in to comment.