From 298a37e576edab37e2885632338d22087bb57540 Mon Sep 17 00:00:00 2001 From: gingemonster Date: Wed, 20 Jul 2016 06:14:18 +0100 Subject: [PATCH] updated setPull help annotation At some point Im guessing the help file has been renamed and its current url is https://codethemicrobit.com/reference/pins/set-pull. This change to the annotation of setPull removes the word "digital" so that the link should work again --- libs/microbit/pins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/microbit/pins.cpp b/libs/microbit/pins.cpp index 0589aa7c..88c31ab1 100644 --- a/libs/microbit/pins.cpp +++ b/libs/microbit/pins.cpp @@ -229,7 +229,7 @@ namespace pins { * @param name pin to set the pull mode on * @param pull one of the mbed pull configurations: PullUp, PullDown, PullNone */ - //% help=pins/digital-set-pull weight=3 + //% help=pins/set-pull weight=3 //% blockId=device_set_pull block="set pull|pin %pin|to %pull" void setPull(DigitalPin name, PinPullMode pull) { PinMode m = pull == PinPullMode::PullDown