Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix some spelling issues #738

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@

* Change how tabular rate tables are stored and read (#450)

* Support historial ReacLib format (#449)
* Support historical ReacLib format (#449)

# 2.0.0

Expand Down Expand Up @@ -270,7 +270,7 @@

* weak rate table units in the header were fixed (#297)

* python nuclei variable indicies now begin with 'j' (#296)
* python nuclei variable indices now begin with 'j' (#296)

* python implementations of screening were added (#281)

Expand Down
4 changes: 2 additions & 2 deletions docs/source/Example-Integrating-Network-diffeqpy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"id": "14f825c1-fa92-4c23-8dcd-5201d48e6108",
"metadata": {},
"source": [
"After importing all the necessary libraries and modules, we can intialize the thermodynamic conditions, intial compositions, the time span, and the algorithm or method we will be using to solve with."
"After importing all the necessary libraries and modules, we can initialize the thermodynamic conditions, initial compositions, the time span, and the algorithm or method we will be using to solve with."
]
},
{
Expand All @@ -152,7 +152,7 @@
"T = 1.5e7 #K\n",
"screen_func = None\n",
"\n",
"Y0 = np.zeros((cno.nnuc), dtype=np.float64) #Intialize array of mass fractions\n",
"Y0 = np.zeros((cno.nnuc), dtype=np.float64) # Initialize array of mass fractions\n",
"\n",
"Y0[cno.jp] = 0.7 #Solar mix of mass fractions\n",
"Y0[cno.jhe4] = 0.28\n",
Expand Down