From 2d2e745d137ffb42643172aa89ba89974204c430 Mon Sep 17 00:00:00 2001 From: Robert Schwarz <43053+rschwarz@users.noreply.github.com> Date: Wed, 25 Jun 2025 10:07:17 +0200 Subject: [PATCH] Fix minor typos in docs --- docs/src/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/index.md b/docs/src/index.md index 001b9c1..fca6e27 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -88,7 +88,7 @@ data = ModelAnalyzer.analyze( # print report to the screen ModelAnalyzer.summarize(data) -# or print ehte report to a file +# or print the report to a file # open a file open("my_report.txt", "w") do io @@ -114,7 +114,7 @@ or it can be further inspected programmatically. ```julia # given a `data` object obtained from `ModelAnalyzer.analyze(...)` -# query the types os issues found in the analysis +# query the types of issues found in the analysis list = ModelAnalyzer.list_of_issue_types(data) # information about the types of issues found can be printed out @@ -132,7 +132,7 @@ ModelAnalyzer.summarize(issues[1]) ### Non JuMP (or MOI) models -If you dont have a JuMP (or MOI) model, you can still use this package reading from a file. +If you don't have a JuMP (or MOI) model, you can still use this package reading from a file. ```julia model = Model();