Fixed a typo precodition -> precondition

This commit is contained in:
Mark Miller 2011-09-07 08:48:46 -07:00
parent 9fab5f9a3a
commit d6df1d4a36
2 changed files with 17 additions and 17 deletions

View File

@ -1,4 +1,4 @@
/// Copyright (c) 2009 Microsoft Corporation /// Copyright (c) 2009 Microsoft Corporation
/// ///
/// Redistribution and use in source and binary forms, with or without modification, are permitted provided /// Redistribution and use in source and binary forms, with or without modification, are permitted provided
/// that the following conditions are met: /// that the following conditions are met:

View File

@ -30,7 +30,7 @@ test: function testcase() {
return JSON.stringify(null) === 'null'; return JSON.stringify(null) === 'null';
}, },
precodition: function preq () { precondition: function preq () {
return JSON && fnExists(JSON.stringify); return JSON && fnExists(JSON.stringify);
} }
} ); } );