diff --git a/lib/stm32/f1/adc.c b/lib/stm32/f1/adc.c
index 14d0ae95..89967f87 100644
--- a/lib/stm32/f1/adc.c
+++ b/lib/stm32/f1/adc.c
@@ -89,20 +89,6 @@ LGPL License Terms @ref lgpl_license
* along with this library. If not, see .
*/
-/*
- * Basic ADC handling API.
- *
- * Examples:
- * rcc_peripheral_enable_clock(&RCC_APB2ENR, ADC1EN);
- * rcc_peripheral_disable_clock(&RCC_APB2ENR, ADC1EN);
- * rcc_peripheral_reset(&RCC_APB2RSTR, ADC1RST);
- * rcc_peripheral_clear_reset(&RCC_APB2RSTR, ADC1RST);
- *
- * rcc_set_adc_clk(ADC_PRE_PLCK2_DIV2);
- * adc_set_dual_mode(ADC1, TODO);
- * reg16 = adc_read(ADC1, ADC_CH_0);
- */
-
/**@{*/
#include