Skip to content

Commit ba7aa3f

Browse files
authored
Fix mis-matched backticks in doxygen (#2104)
1 parent 54784f8 commit ba7aa3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/common/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This directory code that is common to all builds regardless of `PICO_PLATFORM`. It is a mix
22
of common header files, or high level functionality built entirely using `hardware_` or `pico_` libraries provided
3-
by the actual target `PICO_PLATFORM``
3+
by the actual target `PICO_PLATFORM`

src/rp2_common/pico_standard_binary_info/doc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
* * The program name if defined (unless `PICO_NO_BINARY_SIZE=1`). The value is `PICO_PROGRAM_NAME` or `PICO_TARGET_NAME` if the former isn't defined
1010
* * The value of PICO_BOARD (unless `PICO_NO_BI_PICO_BOARD=1`)
1111
* * The SDK version (unless `PICO_NO_BI_SDK_VERSION=1`)
12-
* * The program version string if defined (unless `PICO_NO_BI_PROGRAM_VERSION_STRING=1`). The value is `PICO_PROGRAM_VERSION_STRING``
12+
* * The program version string if defined (unless `PICO_NO_BI_PROGRAM_VERSION_STRING=1`). The value is `PICO_PROGRAM_VERSION_STRING`
1313
* * The program description if defined (unless `PICO_NO_BI_PROGRAM_DESCRIPTION=1`). The value is `PICO_PROGRAM_DESCRIPTION`
1414
* * The program url if defined (unless `PICO_NO_BI_PROGRAM_URL=1`). The value is `PICO_PROGRAM_URL`
1515
* * The boot stage 2 used if any (unless `PICO_NO_BI_BOOT_STAGE2_NAME=1`). The value is `PICO_BOOT_STAGE2_NAME`
16-
* * The program build date (unless `PICO_NO_BI_PROGRAM_BUILD_DATE=1). The value defaults to the C preprocessor value `__DATE__`, but can be overridden with `PICO_PROGRAM_BUILD_DATE`. Note you should do a clean build if you want to be sure this value is up to date.
16+
* * The program build date (unless `PICO_NO_BI_PROGRAM_BUILD_DATE=1`). The value defaults to the C preprocessor value `__DATE__`, but can be overridden with `PICO_PROGRAM_BUILD_DATE`. Note you should do a clean build if you want to be sure this value is up to date.
1717
* * The program build type (unless `PICO_NO_BI_BUILD_TYPE=1`). The value is `PICO_CMAKE_BUILD_TYPE` which comes from the CMake build - e.g. Release, Debug, RelMinSize
1818
* * The binary size (unless `PICO_NO_BI_BINARY_SIZE=1`)
1919
*/

0 commit comments

Comments
 (0)