1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Typos in javadoc

Change-Id: I560f7c21964a219010a06f7ed18d233e1a53d152
This commit is contained in:
Marc Khouzam 2012-09-18 09:59:52 -04:00
parent c79f305503
commit 5e58ee7125

View file

@ -33,8 +33,8 @@ public interface IAddress extends Comparable<Object> {
/** /**
* Adds offset to address and returns new address object * Adds offset to address and returns new address object
* which is the result * which is the result
* <br><br>Note: This method has an offset limit of Long.MAX and Long.MIN, which under some addressing schems * <br><br>Note: This method has an offset limit of Long.MAX and Long.MIN, which under some addressing schemes
* may impose an unnesseary limitation, see <code>IAddressa.add(BigInteger offset)</code> to handle larger offsets. * may impose an unnecessary limitation, see <code>IAddress.add(BigInteger offset)</code> to handle larger offsets.
* @param offset to add * @param offset to add
* @return the new address * @return the new address
*/ */
@ -42,7 +42,7 @@ public interface IAddress extends Comparable<Object> {
/** /**
* Returns maximal offset possible for address. The offset * Returns maximal offset possible for address. The offset
* should be Identicall for all addresses of given class. * should be identical for all addresses of given class.
* @return the max offset for this address class * @return the max offset for this address class
*/ */
BigInteger getMaxOffset(); BigInteger getMaxOffset();
@ -83,7 +83,7 @@ public interface IAddress extends Comparable<Object> {
/** /**
* Converts address to string as an unsigned number with given radix * Converts address to string as an unsigned number with given radix
* @param radix to use for strng conversion * @param radix to use for string conversion
* @return a string representation of address * @return a string representation of address
*/ */
String toString(int radix); String toString(int radix);
@ -113,9 +113,9 @@ public interface IAddress extends Comparable<Object> {
/** /**
* Returns amount of symbols in hex representation. Is identical to * Returns amount of symbols in hex representation. Is identical to
* toHexAddressString().length(). It is present for perfomance purpose. * toHexAddressString().length(). It is present for performance purpose.
* *
* @return the nmber os chararcter symbols to represent this address in hex. * @return the number of character symbols to represent this address in hex.
*/ */
int getCharsNum(); int getCharsNum();