Skip to content

Commit

Permalink
fix comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
adrifoster committed Mar 13, 2024
1 parent 95a35d6 commit 6c138bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/ctsm/mesh_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ def get_parser():

parser.add_argument(
"--lat",
help="Name of latitude varibale on netcdf input file.",
help="Name of latitude variable on netcdf input file.",

This comment has been minimized.

Copy link
@negin513

negin513 Mar 14, 2024

hehe! Good one I missed. :-)

action="store",
dest="lat_name",
type=str,
required=True,
)
parser.add_argument(
"--lon",
help="Name of latitude varibale on netcdf input file.",
help="Name of latitude variable on netcdf input file.",
action="store",
dest="lon_name",
type=str,
required=True,
)
parser.add_argument(
"--mask",
help="Name of mask varibale on netcdf input file."
help="Name of mask variable on netcdf input file."
+ " If none given, create a fake mask with values of 1.",
action="store",
dest="mask_name",
Expand Down

0 comments on commit 6c138bd

Please sign in to comment.