Skip to content

Commit

Permalink
Fix docs typo
Browse files Browse the repository at this point in the history
  • Loading branch information
juntyr committed Jun 18, 2024
1 parent 8da048f commit 60cafd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/simulate.ron
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,11 @@
/* downscale factor along the x-axis of the habitat
* expressed either as a power-of-two integer
* or as a base-two scientific notation string */
x: (u32 = 2^{1..=16}) or ("1B{1..=16}"),
x: (u32 = 2^{0..=16}) or ("1B{0..=16}"),
/* downscale factor along the y-axis of the habitat
* expressed either as a power-of-two integer
* or as a base-two scientific notation string */
y: (u32 = 2^{1..=16}) or ("1B{1..=16}"),
y: (u32 = 2^{0..=16}) or ("1B{0..=16}"),
/* number of random samples used to emperically determine
* the self-dispersal probability (and the non-self-
* dispersal target probability distribution,
Expand Down

0 comments on commit 60cafd8

Please sign in to comment.