Skip to content

Commit cae647e

Browse files
committed
Fix backticks
1 parent 478f02c commit cae647e

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

pvlib/pvsystem.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
335335
model : String, default 'haydavies'
336336
Irradiance model.
337337
diffuse_components : bool, default False
338-
If `True`, returns the diffuse irradiance components available
338+
If ``True``, returns the diffuse irradiance components available
339339
from the selected model (e.g., `poa_isotropic`,
340340
`poa_circumsolar`, `poa_horizon`).
341-
If `False`, only the total diffuse irradiance is returned.
341+
If ``False``, only the total diffuse irradiance is returned.
342342
343343
kwargs
344344
Extra parameters passed to
@@ -1171,10 +1171,10 @@ def get_irradiance(self, solar_zenith, solar_azimuth, dni, ghi, dhi,
11711171
model : String, default 'haydavies'
11721172
Irradiance model.
11731173
diffuse_components : bool, default False
1174-
If `True`, returns the diffuse irradiance components available
1175-
from the selected model (e.g., `poa_isotropic`,
1176-
`poa_circumsolar`, `poa_horizon`).
1177-
If `False`, only the total diffuse irradiance is returned.
1174+
If ``True``, returns the diffuse irradiance components available
1175+
from the selected model (e.g., ``poa_isotropic``,
1176+
``poa_circumsolar``, ``poa_horizon``).
1177+
If ``False``, only the total diffuse irradiance is returned.
11781178
11791179
kwargs
11801180
Extra parameters passed to
@@ -1276,9 +1276,9 @@ def get_iam_diffuse(self, surface_tilt, iam_model,
12761276
Determine the incidence angle modifier for various diffuse irradiance
12771277
components using the method specified by ``iam_model``.
12781278
1279-
Parameters for `iam_model` are used from `Array.module_parameters` if
1280-
found. If parameters are not found in `Array.module_parameters`,
1281-
default parameters for `iam_model` are used.
1279+
Parameters for ``iam_model`` are used from ``Array.module_parameters``
1280+
if found. If parameters are not found in ``Array.module_parameters``,
1281+
default parameters for ``iam_model`` are used.
12821282
12831283
Parameters
12841284
----------
@@ -1301,9 +1301,9 @@ def get_iam_diffuse(self, surface_tilt, iam_model,
13011301
Raises
13021302
------
13031303
ValueError
1304-
if `iam_model` is not a valid model name.
1304+
if ``iam_model`` is not a valid model name.
13051305
ValueError
1306-
if `iam_model` is 'marion_diffuse' and `marion_model` is not
1306+
if ``iam_model`` is 'marion_diffuse' and ``marion_model`` is not
13071307
a valid model name.
13081308
"""
13091309
model = iam_model.lower()

0 commit comments

Comments
 (0)