Skip to content

Commit

Permalink
Copy/pasted typo. Thanks to phae and jamesweiner for pointing it out.
Browse files Browse the repository at this point in the history
  • Loading branch information
slightlyoff committed Mar 16, 2012
1 parent a50d643 commit 14b7591
Show file tree
Hide file tree
Showing 35 changed files with 38 additions and 35 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
Cassowary Constraint Solving Toolkit Cassowary Constraint Solving Toolkit
Copyright (C) 1998-2000 Greg J. Badros Copyright (C) 1998-2000 Greg J. Badros
Parts Copyright (C) 2011-2012, Alex Rusell (slightlyoff@chromium.org) Parts Copyright (C) 2011-2012, Alex Russell (slightlyoff@chromium.org)


This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public modify it under the terms of the GNU Lesser General Public
Expand Down
2 changes: 1 addition & 1 deletion demos/panels/panels.html
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<!-- <!--
Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)
Use of this source code is governed by the LGPL, which can be found in the Use of this source code is governed by the LGPL, which can be found in the
COPYING.LGPL file. COPYING.LGPL file.
--> -->
Expand Down
2 changes: 1 addition & 1 deletion demos/quad/quaddemo.html
Expand Up @@ -6,7 +6,7 @@
Use of this source code is governed by the LGPL, which can be found in the Use of this source code is governed by the LGPL, which can be found in the
COPYING.LGPL file. COPYING.LGPL file.
Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)
--> -->
<head> <head>
Expand Down
2 changes: 1 addition & 1 deletion demos/quad/quaddemo.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


DraggableBox = c.inherit({ DraggableBox = c.inherit({


Expand Down
2 changes: 1 addition & 1 deletion demos/table/table.html
@@ -1,6 +1,6 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<!-- Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) --> <!-- Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org) -->
<head> <head>
<script src="../../src/c.js"></script> <script src="../../src/c.js"></script>
<script src="../../src/HashTable.js"></script> <script src="../../src/HashTable.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion demos/table/table.js
@@ -1,4 +1,4 @@
// Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)
// //
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
Expand Down
2 changes: 1 addition & 1 deletion src/Constraint.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


// FILE: EDU.Washington.grad.gjb.cassowary // FILE: EDU.Washington.grad.gjb.cassowary
// package EDU.Washington.grad.gjb.cassowary; // package EDU.Washington.grad.gjb.cassowary;
Expand Down
2 changes: 1 addition & 1 deletion src/EditInfo.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/Error.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c){ (function(c){
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/LinearConstraint.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/LinearExpression.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


// FILE: EDU.Washington.grad.gjb.cassowary // FILE: EDU.Washington.grad.gjb.cassowary
// package EDU.Washington.grad.gjb.cassowary; // package EDU.Washington.grad.gjb.cassowary;
Expand Down
2 changes: 1 addition & 1 deletion src/Point.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/SimplexSolver.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
var t = c.Tableau; var t = c.Tableau;
Expand Down
2 changes: 1 addition & 1 deletion src/Strength.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


// FILE: EDU.Washington.grad.gjb.cassowary // FILE: EDU.Washington.grad.gjb.cassowary
// package EDU.Washington.grad.gjb.cassowary; // package EDU.Washington.grad.gjb.cassowary;
Expand Down
2 changes: 1 addition & 1 deletion src/SymbolicWeight.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {


Expand Down
2 changes: 1 addition & 1 deletion src/Tableau.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/Timer.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(scope, c) { (function(scope, c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/Variable.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011, Alex Russell (slightlyoff@chromium.org)


(function(c) { (function(c) {
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion src/c.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2011-2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2011-2012, Alex Russell (slightlyoff@chromium.org)


(function(scope){ (function(scope){
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion tests/End-To-End-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


(function() { (function() {


Expand Down
2 changes: 1 addition & 1 deletion tests/LinearConstraint-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/LinearExpression-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/PerfTest.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


(function(c){ (function(c){
"use strict"; "use strict";
Expand Down
2 changes: 1 addition & 1 deletion tests/Point-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
5 changes: 4 additions & 1 deletion tests/SimplexSolver-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand All @@ -11,5 +11,8 @@ doh.add("c.SimplexSolver", [
new c.SimplexSolver(); new c.SimplexSolver();
}, },


function addPointStays(t) {
},

// FIXME(slightlyoff): MOAR TESTS // FIXME(slightlyoff): MOAR TESTS
]); ]);
2 changes: 1 addition & 1 deletion tests/Strength-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/SymbolicWeight-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/Tableau-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/Variable-test.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/WorkerPerfTest.js
Expand Up @@ -3,7 +3,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/run-perf.js
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


"use strict"; "use strict";


Expand Down
2 changes: 1 addition & 1 deletion tests/run.sh
Expand Up @@ -3,7 +3,7 @@
# Use of this source code is governed by the LGPL, which can be found in the # Use of this source code is governed by the LGPL, which can be found in the
# COPYING.LGPL file. # COPYING.LGPL file.
# #
# Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) # Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


DOH='../util/doh/runner.js' DOH='../util/doh/runner.js'
JSCPATH='/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc' JSCPATH='/System/Library/Frameworks/JavaScriptCore.framework/Versions/Current/Resources/jsc'
Expand Down
2 changes: 1 addition & 1 deletion tests/test.js
@@ -1,7 +1,7 @@
// Use of this source code is governed by the LGPL, which can be found in the // Use of this source code is governed by the LGPL, which can be found in the
// COPYING.LGPL file. // COPYING.LGPL file.
// //
// Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) // Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)


load("../src/c.js"); load("../src/c.js");
load("../src/HashTable.js"); load("../src/HashTable.js");
Expand Down
2 changes: 1 addition & 1 deletion tests/unittests.html
Expand Up @@ -6,7 +6,7 @@
Use of this source code is governed by the LGPL, which can be found in the Use of this source code is governed by the LGPL, which can be found in the
COPYING.LGPL file. COPYING.LGPL file.
Parts Copyright (C) 2012, Alex Rusell (slightlyoff@chromium.org) Parts Copyright (C) 2012, Alex Russell (slightlyoff@chromium.org)
--> -->
<head> <head>
<title>Cassowary Javascript Tests</title> <title>Cassowary Javascript Tests</title>
Expand Down

0 comments on commit 14b7591

Please sign in to comment.