Skip to content

Commit e5954ea

Browse files
committed
review comments
1 parent 7cdfa3f commit e5954ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/components/Action.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ interface ActionProps {
3737
* @method handleOnkeyDown Executes key commands
3838
*
3939
*/
40-
/* // gabi :: index and delta props were removed from Action.jsx */
40+
// index and delta props were removed from Action.jsx */
4141
// viewIndex and handleonkeyDown added to props
4242
const Action = (props: ActionProps): unknown => {
4343
const {

src/app/components/Chart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class Chart extends Component {
185185
// this arranges the angle of the text
186186
.attr('transform', function (d:{x:number, y:number}) { return 'rotate(' + (d.x < Math.PI ? d.x - Math.PI / 2 : d.x + Math.PI / 2) * 1 / Math.PI + ')'; })
187187
.text(function (d:{data:{name:number, branch:number}}) {
188-
// gabi and nate :: display the name of of specific patch
188+
// display the name of the specific patch
189189
return `${d.data.name}.${d.data.branch}`;
190190
});
191191

0 commit comments

Comments
 (0)