Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Dec 12, 2021
1 parent 8b9cfb1 commit 285dd05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/stats/moe.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ export const getRmoe = function (moe, mean) {

// Find the `length` that gets a specific `moe` with a given `stdev`.
// This essentially applies the inverse function of `getMoe()`.
// Since `length` is used in non-straight-forward ways (due to `getTvalue()`)
// in `getMoe()`, we need to do an iterative/heuristic search until the value
// is found.
// Since `length` is used in non-straight-forward ways (due to
// `getStudentTvalue()`) in `getMoe()`, we need to do an iterative/heuristic
// search until the value is found.
export const getLengthForMoe = function (moeTarget, stdev) {
const lengths = new Set([])
// eslint-disable-next-line fp/no-let
Expand Down

0 comments on commit 285dd05

Please sign in to comment.