Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed Dec 10, 2023
1 parent 1ef8d0a commit 58141fa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions src/Limit Calculations/c.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ import { type controlLimitsObject, type controlLimitsArgs } from "../Classes";
* It includes keys (categories), and numerators (values for each category).
* @returns {controlLimitsObject} An object containing the keys, values, targets (center line),
* and the lower and upper control limits for both 95% and 99% confidence intervals.
*
* @example
* // Returns control limits for the provided data
* cLimits({ keys: ['a', 'b', 'c'], numerators: [5, 7, 9] })
*/
export default function cLimits(args: controlLimitsArgs): controlLimitsObject {
const cl: number = mean(args.numerators);
Expand Down
4 changes: 0 additions & 4 deletions src/Limit Calculations/g.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ import { type controlLimitsObject, type controlLimitsArgs } from "../Classes";
* It includes keys (categories), and numerators (values for each category).
* @returns {controlLimitsObject} An object containing the keys, values, targets (center line),
* and the lower and upper control limits for both 95% and 99% confidence intervals.
*
* @example
* // Returns control limits for the provided data
* gLimits({ keys: ['a', 'b', 'c'], numerators: [5, 7, 9] })
*/
export default function gLimits(args: controlLimitsArgs): controlLimitsObject {
const cl: number = mean(args.numerators);
Expand Down

0 comments on commit 58141fa

Please sign in to comment.