Skip to content

Commit 8797533

Browse files
committed
Fix typo with param$bird_create vs param$bird
1 parent 7368fa1 commit 8797533

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

R/param_create.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ param_create <- function(id, default = FALSE, ...) {
8585
low_speed_fix = formals(graph_set_movement)$low_speed_fix,
8686
zero_speed_ratio = formals(graph_set_movement)$zero_speed_ratio
8787
),
88-
bird = list(
88+
bird_create = list(
8989
mass = formals(bird_create)$mass,
9090
wing_span = formals(bird_create)$wing_span,
9191
wing_aspect = formals(bird_create)$wing_aspect,

R/print.param.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ print.param <- function(x, ...) {
7979
bullets(param$graph_set_movement, "shape")
8080
bullets(param$graph_set_movement, "scale")
8181
bullets(param$graph_set_movement, "location")
82-
bullets(param, "bird")
82+
bullets(param, "bird_create")
8383
bullets(param$graph_set_movement, "power2prob")
8484
bullets(param$graph_set_movement, "low_speed_fix")
8585
bullets(param$graph_set_movement, "zero_speed_ratio")

0 commit comments

Comments
 (0)