File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- # builtin_bundle(): errors for unknown preset names
1+ # builtin_bundle() / errors for unknown preset names
22
33 Code
44 builtin_bundle("not-a-preset", version = "5")
Original file line number Diff line number Diff line change 1- # resolve_bs_preset(): throws an error if both ` name ` and ` bootswatch ` are provided
1+ # resolve_bs_preset() / throws an error if both ` name ` and ` bootswatch ` are provided
22
33 Code
44 resolve_bs_preset(preset = "name", bootswatch = "bootswatch")
1010 * `preset = "bootswatch"`
1111 * `bootswatch = "bootswatch"`
1212
13- # resolve_bs_preset(): throws an error if ` name ` or ` bootswatch ` are not scalar strings
13+ # resolve_bs_preset() / throws an error if ` name ` or ` bootswatch ` are not scalar strings
1414
1515 Code
1616 resolve_bs_preset(preset = c("a", "b"))
3030 x Bad: `bootswatch = c("flatly", "darkly")`
3131 v Good: `bootswatch = "flatly"`
3232
33- # resolve_bs_preset(): throws an error if ` name ` or ` bootswatch ` don't match existing presets
33+ # resolve_bs_preset() / throws an error if ` name ` or ` bootswatch ` don't match existing presets
3434
3535 Code
3636 resolve_bs_preset(preset = "not_a_preset", version = 4)
You can’t perform that action at this time.
0 commit comments