Comment out deliberate error in todomvc

This commit is contained in:
mike-thompson-day8 2015-03-05 00:50:40 +11:00
parent c116d01a87
commit 075393d164
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
(def schema
{:todos (s/both (s/pred map?) (s/pred sorted?))
:showing (s/enum :all :done :active)
:mistake (s/enum :one :two) ;; add this bogus schema item in, then watch the console
;; :mistake (s/enum :one :two) ;; add this bogus schema item, then watch the errors in the console
})