Skip to content

Commit 74f8d9e

Browse files
authored
Fix minor typos in docs (#42)
1 parent 682d4b7 commit 74f8d9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ data = ModelAnalyzer.analyze(
8888
# print report to the screen
8989
ModelAnalyzer.summarize(data)
9090

91-
# or print ehte report to a file
91+
# or print the report to a file
9292

9393
# open a file
9494
open("my_report.txt", "w") do io
@@ -114,7 +114,7 @@ or it can be further inspected programmatically.
114114
```julia
115115
# given a `data` object obtained from `ModelAnalyzer.analyze(...)`
116116

117-
# query the types os issues found in the analysis
117+
# query the types of issues found in the analysis
118118
list = ModelAnalyzer.list_of_issue_types(data)
119119

120120
# information about the types of issues found can be printed out
@@ -132,7 +132,7 @@ ModelAnalyzer.summarize(issues[1])
132132

133133
### Non JuMP (or MOI) models
134134

135-
If you dont have a JuMP (or MOI) model, you can still use this package reading from a file.
135+
If you don't have a JuMP (or MOI) model, you can still use this package reading from a file.
136136

137137
```julia
138138
model = Model();

0 commit comments

Comments
 (0)