Skip to content

Commit

Permalink
Completed the description of method docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
darwinlouistoledo committed Mar 13, 2018
1 parent 6a32446 commit b057ac8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions petsa/src/main/java/me/darwinlouistoledo/petsa/Petsa.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ private Petsa() {
* the date string given with its format.
*
* @param stringDate A string date representation
* @return
* @return Will return an implementation of {@link DateStringBuild}
*/
public static DateStringBuild with(String stringDate){
return FormatterFactory.createStringDateFormatter(stringDate);
Expand All @@ -55,7 +55,7 @@ public static DateStringBuild with(String stringDate){
* Then it will format to a format pattern that provided in method {@link DateFormatter#toPattern(String)}.
*
* @param date A Date object representation
* @return
* @return Will return an implementation of {@link DateObjectBuild}
*/
public static DateObjectBuild with(Date date){
return FormatterFactory.createDateFormatter(date);
Expand All @@ -66,7 +66,7 @@ public static DateObjectBuild with(Date date){
* Then it will format to a format pattern that provided in method {@link MillisecondDateFormatter#toPattern(String)}.
*
* @param dateInMilliseconds A long value that represents the date in milliseconds
* @return
* @return Will return an implementation of {@link DateMillisBuild}
*/
public static DateMillisBuild with(Long dateInMilliseconds){
return FormatterFactory.createMillisecondDateFormatter(dateInMilliseconds);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public interface Format {
* If not set, the default {@link Locale#getDefault()} will be use.
*
* @param locale The locale of the date to be formatted and displayed
* @return
* @return Will return an implementation of {@link Format}
*/
Format locale(Locale locale);

Expand Down

0 comments on commit b057ac8

Please sign in to comment.