~ubuntu-branches/ubuntu/natty/libjoda-time-java/natty

« back to all changes in this revision

Viewing changes to src/java/org/joda/time/Seconds.java

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2008-02-22 00:37:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080222003748-hbelrqlvxqlq8oic
Tags: 1.5.2-1
* New upstream release
* Add myself to Uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    public static final Seconds TWO = new Seconds(2);
48
48
    /** Constant representing three seconds. */
49
49
    public static final Seconds THREE = new Seconds(3);
50
 
    /** Constant representing the maximum nuber of seconds that can be stored in this object. */
 
50
    /** Constant representing the maximum number of seconds that can be stored in this object. */
51
51
    public static final Seconds MAX_VALUE = new Seconds(Integer.MAX_VALUE);
52
 
    /** Constant representing the minimum nuber of seconds that can be stored in this object. */
 
52
    /** Constant representing the minimum number of seconds that can be stored in this object. */
53
53
    public static final Seconds MIN_VALUE = new Seconds(Integer.MIN_VALUE);
54
54
 
55
55
    /** The paser to use for this class. */