Skip to content

Commit

Permalink
Update docs to include dropping data
Browse files Browse the repository at this point in the history
  • Loading branch information
brynpickering committed Oct 26, 2023
1 parent 9251145 commit b9d1e34
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion doc/user/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,15 @@ This could be a single value:
.. code-block:: yaml
parameters:
my_param: { data: 10 }
my_param: 10
or (equivalent):

.. code-block:: yaml
parameters:
my_param:
data: 10
which can then be accessed in the model inputs `model.inputs.my_param` and used in custom math as `my_param`.

Expand Down

0 comments on commit b9d1e34

Please sign in to comment.