diff --git a/solr/core/src/java/org/apache/solr/schema/CurrencyField.java b/solr/core/src/java/org/apache/solr/schema/CurrencyField.java
index 6f9ecb09a01..439de8dba60 100644
--- a/solr/core/src/java/org/apache/solr/schema/CurrencyField.java
+++ b/solr/core/src/java/org/apache/solr/schema/CurrencyField.java
@@ -257,13 +257,13 @@ public class CurrencyField extends FieldType implements SchemaAware, ResourceLoa
* default fractional digits for USD
is "2
".
* So for a document whose indexed value was currently equivilent to
* "5.43,USD
" using the the exchange provider for this field,
- * this ValueSource would return a value of "543
"
+ * this ValueSource would return a value of "
543
"
*
USD
. So for a document whose
* indexed value was currently equivilent to "5.43,USD
"
* using the the exchange provider for this field, this ValueSource would
- * return a value of "5.43"
+ * return a value of "5.43
"
*
*
* @param targetCurrencyCode The target currency for the resulting value source, if null the defaultCurrency for this field type will be used
* @param source the raw ValueSource to wrap
* @see #PARAM_DEFAULT_CURRENCY
* @see #DEFAULT_DEFAULT_CURRENCY
- * @see getValueSource
+ * @see #getValueSource
*/
public ValueSource getConvertedValueSource(String targetCurrencyCode,
RawCurrencyValueSource source) {
@@ -462,7 +462,7 @@ public class CurrencyField extends FieldType implements SchemaAware, ResourceLoa
* (ie: $n * 100
) since the number of defalt fractional
* digits for USD
is "2
")
*
- * @see ConvertedCurrencValueSource
+ * @see ConvertedCurrencyValueSource
*/
class RawCurrencyValueSource extends ValueSource {
private static final long serialVersionUID = 1L;