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 Graham Sanderson
parent 58f46b2526
commit 90d785bb5b
9 changed files with 23 additions and 23 deletions

View File

@@ -29,7 +29,7 @@ int main() {
stdio_init_all();
printf("Hello, multicore!\n");
///tag::setup_multicore[]
/// \tag::setup_multicore[]
multicore_launch_core1(core1_entry);
@@ -44,5 +44,5 @@ int main() {
printf("It's all gone well on core 0!");
}
///end::setup_multicore[]
}
/// \end::setup_multicore[]
}