Skip to content

Commit

Permalink
Typo in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
missing-user authored Jan 8, 2025
1 parent 557a7ed commit bf9d8ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/simsopt/geo/surfacerzfourier.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ def get_zs(self, m, n):
def set_rc(self, m, n, val):
"""
Set a particular `rc` Parameter.
Modifyting the `rc` array directly is discouraged, since it doesn't trigger the recompute_bell().
Modifying the `rc` array directly is discouraged, since it doesn't trigger the recompute_bell().
"""
self._validate_mn(m, n)
self.rc[m, n + self.ntor] = val
Expand All @@ -679,7 +679,7 @@ def set_rc(self, m, n, val):
def set_rs(self, m, n, val):
"""
Set a particular `rs` Parameter.
Modifyting the `rs` array directly is discouraged, since it doesn't trigger the recompute_bell().
Modifying the `rs` array directly is discouraged, since it doesn't trigger the recompute_bell().
"""
if self.stellsym:
return ValueError(
Expand All @@ -691,7 +691,7 @@ def set_rs(self, m, n, val):
def set_zc(self, m, n, val):
"""
Set a particular `zc` Parameter.
Modifyting the `zc` array directly is discouraged, since it doesn't trigger the recompute_bell().
Modifying the `zc` array directly is discouraged, since it doesn't trigger the recompute_bell().
"""
if self.stellsym:
return ValueError(
Expand All @@ -703,7 +703,7 @@ def set_zc(self, m, n, val):
def set_zs(self, m, n, val):
"""
Set a particular `zs` Parameter.
Modifyting the `zs` array directly is discouraged, since it doesn't trigger the recompute_bell().
Modifying the `zs` array directly is discouraged, since it doesn't trigger the recompute_bell().
"""
self._validate_mn(m, n)
self.zs[m, n + self.ntor] = val
Expand Down

0 comments on commit bf9d8ca

Please sign in to comment.