Changeset 592 for trunk/Serial

Show
Ignore:
Timestamp:
06/11/09 23:33:16 (3 years ago)
Author:
BCS
Message:

spelling

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Serial/Serialize.d

    r586 r592  
    2929 * Authors: Benjamin 
    3030 */ 
    31 template SerializableRecuring() 
     31template SerializableRecurring() 
    3232{ 
    3333    const bool CyclicType = true; 
  • trunk/Serial/test1.d

    r591 r592  
    1010class CS 
    1111{ 
    12     mixin SerializableRecuring!(); 
     12    mixin SerializableRecurring!(); 
    1313    int i = 5;  float j = 3.1415926; 
    1414    this(){}    this(int) { i++; j++; } 
     
    1818class DS : CS 
    1919{ 
    20     mixin SerializableRecuring!(); 
     20    mixin SerializableRecurring!(); 
    2121    real f = 2.717; 
    2222    this(){}    this(int) { f++; super(0); }