From 9a41acfb8badfb9243168ccd6cf9f1a5f01f02a3 Mon Sep 17 00:00:00 2001 From: Jacob Williams Date: Sun, 7 Jan 2024 15:27:14 -0600 Subject: [PATCH] typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 49df2d9..78744cc 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Updates to the original code include: * It includes updated versions of some of the third-party routines used in the original code (BLAS, LINPACK, and NNLS). * Some new features were added to support printing error messages and reporting iterations to the user. * The user can now specify the max and min `alpha` to use during the line search. -* The user can supply a routine to compute the gradients of the objective function and constriants, or allow the code to estimate them using finite differences (backward, forward, or central). +* The user can supply a routine to compute the gradients of the objective function and constraints, or allow the code to estimate them using finite differences (backward, forward, or central). * The documentation strings in the code have been converted to [FORD](https://github.com/Fortran-FOSS-Programmers/ford) format, allowing for [nicely formatted documentation](https://jacobwilliams.github.io/slsqp/) to be auto-generated. * A couple of bug fixes noted elsewhere have been applied.