From 9941765485bb2e39fb9183fea4ef05d358ffb681 Mon Sep 17 00:00:00 2001 From: Derek Cicerone Date: Mon, 1 Jul 2013 17:38:49 -0400 Subject: [PATCH] Replace bool with boolean (for TypeScript 0.9.0+) --- backbone/backbone.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backbone/backbone.d.ts b/backbone/backbone.d.ts index aa8488beac..c957be929b 100644 --- a/backbone/backbone.d.ts +++ b/backbone/backbone.d.ts @@ -271,7 +271,7 @@ declare module Backbone { navigate(fragment: string, options?: any); started: boolean; - _updateHash(location: Location, fragment: string, replace: bool); + _updateHash(location: Location, fragment: string, replace: boolean); } interface ViewOptions {