Skip to content

Commit

Permalink
feat: review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Oct 3, 2023
1 parent 4405f32 commit dd0088f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/pass-style/src/far-class-instances.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { Far } from './make-far.js';

/**
* Classes whose instances should be Far objects should inherit from
* this convenient base class. Note that the constructor of this base class
* Classes whose instances should be Far objects may find it convenient to
* inherit from this base class. Note that the constructor of this base class
* freezes the instance in an empty state, so all is interesting attributes
* can only depend on its identity and what it inherits from.
* This includes private fields, as those are keyed only on
* this object's identity. However, we discourage (but cannot prevent) such
* use of private fields, as they cannot easily be refactored into exo state.
* use of private fields, as they cannot easily be refactored into Exo state.
*/
export const FarBaseClass = class FarBaseClass {
constructor() {
Expand Down

0 comments on commit dd0088f

Please sign in to comment.