mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-30 00:09:37 +00:00
Fix function header typos interfering with docs generation.
This commit is contained in:
parent
f0e7bd8597
commit
c59292a40d
3 changed files with 4 additions and 4 deletions
|
@ -409,7 +409,7 @@ function posmod(x,m) =
|
||||||
(x%m+m)%m;
|
(x%m+m)%m;
|
||||||
|
|
||||||
|
|
||||||
// Function: modang(x)
|
// Function: modang()
|
||||||
// Usage:
|
// Usage:
|
||||||
// ang = modang(x)
|
// ang = modang(x)
|
||||||
// Description:
|
// Description:
|
||||||
|
|
|
@ -34,7 +34,7 @@ function _substr(str,pos,len,substr="") =
|
||||||
_substr(str, pos+1, len-1, str(substr, str[pos]));
|
_substr(str, pos+1, len-1, str(substr, str[pos]));
|
||||||
|
|
||||||
|
|
||||||
// Function suffix()
|
// Function: suffix()
|
||||||
// Usage:
|
// Usage:
|
||||||
// suffix(str,len)
|
// suffix(str,len)
|
||||||
// Description:
|
// Description:
|
||||||
|
@ -726,7 +726,7 @@ function str_pad(str,length,char=" ",left=false) =
|
||||||
left ? str(padding,str) : str(str,padding);
|
left ? str(padding,str) : str(str,padding);
|
||||||
|
|
||||||
|
|
||||||
// Function str_replace_char()
|
// Function: str_replace_char()
|
||||||
// Usage:
|
// Usage:
|
||||||
// newstr = str_replace_char(str, char, replace)
|
// newstr = str_replace_char(str, char, replace)
|
||||||
// Description:
|
// Description:
|
||||||
|
|
2
vnf.scad
2
vnf.scad
|
@ -870,7 +870,7 @@ module vnf_validate(vnf, size=1, show_warns=true, check_isects=false) {
|
||||||
// Section: VNF transformations
|
// Section: VNF transformations
|
||||||
//
|
//
|
||||||
|
|
||||||
// Function: vnf_halfspace(halfspace, vnf)
|
// Function: vnf_halfspace()
|
||||||
// Usage:
|
// Usage:
|
||||||
// vnf_halfspace([a,b,c,d], vnf)
|
// vnf_halfspace([a,b,c,d], vnf)
|
||||||
// Description:
|
// Description:
|
||||||
|
|
Loading…
Reference in a new issue