From 35fd83f814a44ab190731d2c8c46d9249eb2fc06 Mon Sep 17 00:00:00 2001 From: Watson Date: Fri, 2 Nov 2012 22:34:23 +0900 Subject: [PATCH] fix the return type about delegate This will fix the following case: - (id < NSKeyedArchiverDelegate >) delegate --- doc/docset.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docset.rb b/doc/docset.rb index 612addeb..294efd68 100644 --- a/doc/docset.rb +++ b/doc/docset.rb @@ -30,7 +30,7 @@ class DocsetGenerator when /\*$/ # A double pointer, in MacRuby this becomes a Pointer. 'Pointer' - when 'id' + when /id(?:\s*<\w+>)?/ 'Object' when 'void' 'nil'