バージョン1.5.0_rc0ではAjax.Requestのasynchronousの指定方法がBoolean型ではなく文字列?

new Ajax.Request
(
	"hoge.php",
	{
		method      : "post",
		asynchronous: "false",	//要文字列型?
		onSuccess   : function(httpObj)
		{
			alert("hoge");
		}
	}
);

色々調べてみたけど、何処もBoolean型で指定してるんだよなー。
バージョン1.6ではBoolean型でもおk。