From d3f0bfc17f82b42f2d81f2d72a54c3f0cc375604 Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Wed, 29 Mar 2023 12:54:07 +0100 Subject: [PATCH] Fixed typo in resistor comment. --- readme.md | 2 +- vitamins/component.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 23bcd24..8298a6b 100644 --- a/readme.md +++ b/readme.md @@ -828,7 +828,7 @@ Various electronic components used in hot ends and heated beds. | `panel_USBA()` | Draw a panel mount USBA connector | | `panel_USBA_hole_positions()` | Place children at hole positions | | `panel_USBA_holes(h = 100)` | Make holes for USBA connector | -| `resistor(type)` | Draw specified type of resitor | +| `resistor(type)` | Draw specified type of resistor | | `sleeved_resistor(type, sleeving, bare = 5, heatshrink = false)` | Draw a resistor with sleeved leads and option heatshrink | | `thermal_cutout(type)` | Draw specified thermal cutout | | `thermal_cutout_hole_positions(type)` | Place children at hole positions | diff --git a/vitamins/component.scad b/vitamins/component.scad index 84012d5..87e6bd8 100644 --- a/vitamins/component.scad +++ b/vitamins/component.scad @@ -41,7 +41,7 @@ function resistor_sleeved(type) = type[9]; //! Are the leads sleeved splay_angle = 2; // radial lead splay angle -module resistor(type) { //! Draw specified type of resitor +module resistor(type) { //! Draw specified type of resistor length = resistor_length(type); dia = resistor_diameter(type);