Skip to content

Commit

Permalink
fix: contributing guide link in docs and Eigen Matrix constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
DhruvJ22 committed Feb 6, 2024
1 parent b26f945 commit b0ba814
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ The validation tests can be run with `ostk-validate` from within the dev contain

Contributions are more than welcome!

Please read our [contributing guide](CONTRIBUTING.md) to learn about our development process, how to propose fixes and improvements, and how to build and test the code.
Please read our [contributing guide](https://github.com/open-space-collective/open-space-toolkit-astrodynamics/blob/main/CONTRIBUTING.md) to learn about our development process, how to propose fixes and improvements, and how to build and test the code.

## Special Thanks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ MatrixXd FiniteDifferenceSolver::computeJacobian(
{
const VectorXd coordinates = generateStateCoordinates(anInputState, anInstantArray[0]);

const MatrixXd coordinatesMatrix = {coordinates};
const MatrixXd coordinatesMatrix = coordinates;

return coordinatesMatrix;
};
Expand Down

0 comments on commit b0ba814

Please sign in to comment.