Skip to content

Commit df51e99

Browse files
authored
Merge pull request #3365 from emma58/typo-fix
Fixing a couple typos the new version of typos (1.24.5) is finding
2 parents cda2d02 + 68ba5d6 commit df51e99

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/test_branches.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ jobs:
519519
$BARON_DIR = "${env:TPL_DIR}/baron"
520520
echo "$BARON_DIR" | `
521521
Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
522-
$URL = "https://minlp.com/downloads/xecs/baron/current/"
522+
$URL = "https://minlp-downloads.nyc3.cdn.digitaloceanspaces.com/xecs/baron/current/"
523523
if ( "${{matrix.TARGET}}" -eq "win" ) {
524524
$INSTALLER = "${env:DOWNLOAD_DIR}/baron_install.exe"
525525
$URL += "baron-win64.exe"

.github/workflows/test_pr_and_main.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ jobs:
547547
$BARON_DIR = "${env:TPL_DIR}/baron"
548548
echo "$BARON_DIR" | `
549549
Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
550-
$URL = "https://minlp.com/downloads/xecs/baron/current/"
550+
$URL = "https://minlp-downloads.nyc3.cdn.digitaloceanspaces.com/xecs/baron/current/"
551551
if ( "${{matrix.TARGET}}" -eq "win" ) {
552552
$INSTALLER = "${env:DOWNLOAD_DIR}/baron_install.exe"
553553
$URL += "baron-win64.exe"
@@ -698,6 +698,7 @@ jobs:
698698
uses: actions/upload-artifact@v4
699699
with:
700700
name: ${{github.job}}_${{env.GHA_JOBGROUP}}-${{env.GHA_JOBNAME}}
701+
include-hidden-files: true
701702
path: |
702703
.coverage
703704
coverage.xml

examples/doc/samples/case_studies/diet/DietProblem.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ \subsection*{Build the model}
5454

5555
The comma indicates that this parameter is over two different sets, and thus is in two dimensions. When we create the data file, we will be able to fill in how much of each nutrient each food contains.
5656

57-
At this point we have defined our sets and parameters. However, we have yet to cosnider the amount of food to be bought and eaten. This is the variable weâre trying to solve for, and thus we create an object of the variable class. Since this is just recording how much food to purchase, we create a one dimensional variable over food:
57+
At this point we have defined our sets and parameters. However, we have yet to consider the amount of food to be bought and eaten. This is the variable weâre trying to solve for, and thus we create an object of the variable class. Since this is just recording how much food to purchase, we create a one dimensional variable over food:
5858

5959
\begin{verbatim}model.amount=Var(model.foods, within = NonNegativeReals) \end{verbatim}
6060

examples/doc/samples/case_studies/diet/README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ model.nutrient_value=Param(model.nutrients, model.foods)
6868

6969
The comma indicates that this parameter is over two different sets, and thus is in two dimensions. When we create the data file, we will be able to fill in how much of each nutrient each food contains.
7070

71-
At this point we have defined our sets and parameters. However, we have yet to cosnider the amount of food to be bought and eaten. This is the variable we're trying to solve for, and thus we create an object of the variable class. Since this is just recording how much food to purchase, we create a one dimensional variable over food:
71+
At this point we have defined our sets and parameters. However, we have yet to consider the amount of food to be bought and eaten. This is the variable we're trying to solve for, and thus we create an object of the variable class. Since this is just recording how much food to purchase, we create a one dimensional variable over food:
7272

7373
{{{
7474
#!python

0 commit comments

Comments
 (0)