summaryrefslogtreecommitdiff
path: root/src/target/target.h
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-03 04:37:51 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-03 04:37:51 +0000
commit9a5acdc161372b7f2923877f6b9b034d4031b389 (patch)
treeb2c67ba1772f357101f2c4721e3327d0beb559e6 /src/target/target.h
parent6c39b5dd52969c1927c5115e24bb8a1fc9555349 (diff)
downloadopenocd_libswd-9a5acdc161372b7f2923877f6b9b034d4031b389.tar.gz
openocd_libswd-9a5acdc161372b7f2923877f6b9b034d4031b389.tar.bz2
openocd_libswd-9a5acdc161372b7f2923877f6b9b034d4031b389.tar.xz
openocd_libswd-9a5acdc161372b7f2923877f6b9b034d4031b389.zip
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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/target.h b/src/target/target.h
index 41b6f4dd..a62e325c 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().
*