Standardise start/end comment tags (to our internal format) (#20)

This commit is contained in:
Andrew Scheller
2021-01-28 16:05:03 +00:00
committed by GitHub
parent 2b0aa6bc79
commit 3f8bff094d
9 changed files with 23 additions and 23 deletions

View File

@@ -8,7 +8,7 @@
#include "pico/stdlib.h"
#include "hardware/divider.h"
// tag::hello_divider[]
/// \tag::hello_divider[]
int main() {
stdio_init_all();
printf("Hello, divider!\n");
@@ -72,4 +72,4 @@ int main() {
printf("outer divide %d / %d = %d\n", dividend, divisor, tmp);
return 0;
}
// end::hello_divider[]
/// \end::hello_divider[]