diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-03 04:37:51 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-03 04:37:51 +0000 |
commit | 9a5acdc161372b7f2923877f6b9b034d4031b389 (patch) | |
tree | b2c67ba1772f357101f2c4721e3327d0beb559e6 /src/target/target.h | |
parent | 6c39b5dd52969c1927c5115e24bb8a1fc9555349 (diff) | |
download | riscv-openocd-9a5acdc161372b7f2923877f6b9b034d4031b389.zip riscv-openocd-9a5acdc161372b7f2923877f6b9b034d4031b389.tar.gz riscv-openocd-9a5acdc161372b7f2923877f6b9b034d4031b389.tar.bz2 |
Improve in-source documentation that was causing Doxygen warnings.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2025 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/target.h')
-rw-r--r-- | src/target/target.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/target.h b/src/target/target.h index 41b6f4d..a62e325 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -325,7 +325,7 @@ extern int target_run_algorithm(struct target_s *target, int timeout_ms, void *arch_info); /** - * Read @count items of @a size bytes from the memory of @a target at + * Read @a count items of @a size bytes from the memory of @a target at * the @a address given. * * This routine is a wrapper for target->type->read_memory. @@ -333,7 +333,7 @@ extern int target_run_algorithm(struct target_s *target, extern int target_read_memory(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer); /** - * Write @count items of @a size bytes to the memory of @a target at + * Write @a count items of @a size bytes to the memory of @a target at * the @a address given. * * This routine is wrapper for target->type->write_memory. @@ -342,7 +342,7 @@ extern int target_write_memory(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer); /** - * Write @count items of 4 bytes to the memory of @a target at + * Write @a count items of 4 bytes to the memory of @a target at * the @a address given. Because it operates only on whole words, * this should be faster than target_write_memory(). * |