Skip to content

Commit bf8b47b

Browse files
committed
typos and doc comments
1 parent 50d0046 commit bf8b47b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

quickfixj-base/src/main/java/quickfix/FixVersions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public interface FixVersions {
3030
String BEGINSTRING_FIX44 = "FIX.4.4";
3131

3232
/*
33-
* FIX 5.0+ does not have a begin string.
33+
* FIX 5.0+ does not have a BeginString.
3434
*/
3535
String FIX50 = "FIX.5.0";
3636
String FIX50SP1 = "FIX.5.0SP1";

quickfixj-base/src/main/java/quickfix/InvalidMessage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
package quickfix;
2121

22-
/*
23-
* An exception when a message is not valid according to the
22+
/**
23+
* Thrown when a message is not valid according to the
2424
* basic message validation or the data dictionary.
2525
*/
2626
public class InvalidMessage extends Exception {

quickfixj-base/src/main/java/quickfix/MessageUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ public static String getStringField(String messageString, int tag) {
208208
};
209209

210210
/**
211-
* Convert an ApplVerID to a "begin string"
211+
* Convert an ApplVerID to a BeginString.
212212
*
213213
* @param applVerID
214-
* @return the begin string for the specified ApplVerID.
214+
* @return the BeginString for the specified ApplVerID.
215215
* @throws QFJException if conversion fails.
216216
* @see ApplVerID
217217
*/
@@ -239,10 +239,10 @@ public static String toBeginString(ApplVerID applVerID) throws QFJException {
239239
};
240240

241241
/**
242-
* Convert a begin string to an ApplVerID
242+
* Convert a BeginString to an ApplVerID.
243243
*
244244
* @param beginString
245-
* @return the ApplVerID for the specified begin string.
245+
* @return the ApplVerID for the specified BeginString.
246246
* @throws QFJException if conversion fails.
247247
* @see FixVersions
248248
*/

0 commit comments

Comments
 (0)