Skip to content

Commit

Permalink
DOC/BUG: fix space around quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgortmaker committed Jan 13, 2023
1 parent 0ccd17c commit 96f872b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyblp/micro.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MicroDataset(StringRepresentation):
variables that are changing within the loop should be passed as extra arguments to the function to preserve
their scope. For example, ``lambda t, p, a: weights[t]`` where ``weights`` is some dictionary that is
changing in the outer loop should instead be ``lambda t, p, a, weights=weights: weights[t]``; otherwise,
the ``weights``in the current loop's iteration will be lost.
the ``weights`` in the current loop's iteration will be lost.
If the micro dataset contains second choice data, ``weights`` can have a third axis corresponding to second
choices :math:`k` in :math:`w_{dijkt}`:
Expand Down

0 comments on commit 96f872b

Please sign in to comment.