Skip to content

Commit 2fb5e2e

Browse files
committed
[LEMS-3955/add-tangent-type-definitions] fix ticket number
1 parent 7575fb1 commit 2fb5e2e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/perseus/src/widgets/interactive-graphs/interactive-graph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ class InteractiveGraph extends React.Component<Props, State> {
600600
case "angle":
601601
return InteractiveGraph.getAngleEquationString(props);
602602
case "tangent":
603-
// TODO(LEMS-3937): implement tangent equation string
603+
// TODO(LEMS-3955): implement tangent equation string
604604
return "";
605605
default:
606606
throw new UnreachableCaseError(type);

packages/perseus/src/widgets/interactive-graphs/reducer/initialize-graph-state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export function initializeGraphState(
126126
type: "none",
127127
};
128128
case "tangent":
129-
// TODO(LEMS-3937): implement tangent initialization
129+
// TODO(LEMS-3955): implement tangent initialization
130130
return {
131131
...shared,
132132
type: "none",

packages/perseus/src/widgets/interactive-graphs/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export interface SinusoidGraphState extends InteractiveGraphStateCommon {
117117
coords: [vec.Vector2, vec.Vector2];
118118
}
119119

120-
// TODO(LEMS-3937): Export and add to InteractiveGraphState union in PR 3
120+
// TODO(LEMS-3955): Export and add to InteractiveGraphState union in PR 3
121121
// when reducer handlers are implemented.
122122
// eslint-disable-next-line @typescript-eslint/no-unused-vars
123123
interface TangentGraphState extends InteractiveGraphStateCommon {

0 commit comments

Comments
 (0)