Skip to content

Commit

Permalink
chore: Update Matrix.ts spelling mistakes. (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlamb99 authored Jun 19, 2024
1 parent 2ff5ff8 commit 896e655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/model/Matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ enum MatrixType {
enum MatrixAddressingMode {
/** Signal numbers are row/column indices. */
Linear = 'LINEAR',
/** Signle numbers are random. */
/** Signal numbers are random. */
NonLinear = 'NON_LINEAR',
}

Expand Down Expand Up @@ -59,7 +59,7 @@ interface Matrix extends EmberBaseElement {
addressingMode?: MatrixAddressingMode
/** Linear matrix: number of columns. Nonlinear matrix: number of targets. */
targetCount?: number
/** Linea matirx: number of rows. Nonlinear matrix: number of sources. */
/** Linear matirx: number of rows. Nonlinear matrix: number of sources. */
sourceCount?: number
/** For n-to-n matrices, the maximum number of total connections. */
maximumTotalConnects?: number
Expand All @@ -72,7 +72,7 @@ interface Matrix extends EmberBaseElement {
gainParameterNumber?: number
/** Labels for signals. */
labels?: Array<Label>
/** List of schemas that the matrid complies with. `\n` separators. */
/** List of schemas that the matrix complies with. `\n` separators. */
schemaIdentifiers?: string
/** Path of a template containing structure and defaults of this element. */
templateReference?: RelativeOID
Expand Down

0 comments on commit 896e655

Please sign in to comment.