Skip to content

Commit f116f66

Browse files
Copilottoruseo
andcommitted
Fix additional spelling and grammar errors found in thorough review
Co-authored-by: toruseo <[email protected]>
1 parent b4799ed commit f116f66

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ If you need more detailed information, please also cite:
236236
- Toru Seo. [Macroscopic Traffic Flow Simulation: Fundamental Mathematical Theory and Python Implementation](https://toruseo.github.io/misc/MacroTrafficSim_English_summary.pdf). Corona Publishing Co., Ltd., 2023.
237237
- Toru Seo. [UXsim: An open source macroscopic and mesoscopic traffic simulator in Python-a technical overview](http://dx.doi.org/10.48550/arXiv.2309.17114). arXiv preprint arXiv: 2309.17114, 2023.
238238

239-
Works using UXsim is summarized on the [Github Wiki page](https://github.com/toruseo/UXsim/wiki). Please feel free to edit.
239+
Works using UXsim are summarized on the [Github Wiki page](https://github.com/toruseo/UXsim/wiki). Please feel free to edit.
240240

241241
## Contributing and Discussion
242242

demos_and_examples/demo_notebook_08en_chicago.ipynb

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uxsim/DTAsolvers/DTAsolvers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Submodule for Dynamic Traffic Assginment solvers
2+
Submodule for Dynamic Traffic Assignment solvers
33
"""
44
import random
55
import time

uxsim/OSMImporter/OSMImporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import warnings
2323

2424
warnings.warn(
25-
"`OSMImporter` is deprecated. If you are using Python 3.11 or later, please consider to user `OSMImporter2` which has more sophisticated functionalities.",
25+
"`OSMImporter` is deprecated. If you are using Python 3.11 or later, please consider using `OSMImporter2` which has more sophisticated functionalities.",
2626
DeprecationWarning
2727
)
2828

uxsim/scenario_reader_writer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
def demand_info_record(func):
1111
"""
12-
A decorator to record arguments of `World.addVehicle`, `World.adddemand`, etc used in secenario definition in World object.
12+
A decorator to record arguments of `World.addVehicle`, `World.adddemand`, etc used in scenario definition in World object.
1313
"""
1414

1515
@functools.wraps(func)

0 commit comments

Comments
 (0)