From 822d186703f2a54dc4b07b0f36baab03a1d8a156 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 22 Aug 2006 09:43:47 +0000 Subject: * lib/yaml/tag.rb: Replace nodoc with stopdoc so Module methods get git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10759 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/yaml/tag.rb | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f771be404..4f10ec4e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1577,6 +1577,11 @@ Tue Apr 18 00:11:21 2006 Yukihiro Matsumoto * eval.c: block_unique should be 1, not frame_unique. [ruby-dev:28577] +Fri Aug 11 15:39:25 2006 Eric Hodel + + * lib/yaml/tag.rb: Replace nodoc with stopdoc so Module methods get + documented. + Mon Apr 10 01:03:10 2006 Yukihiro Matsumoto * prec.c (prec_prec_f): documentation patch from diff --git a/lib/yaml/tag.rb b/lib/yaml/tag.rb index e51677230..0fb6bef9a 100644 --- a/lib/yaml/tag.rb +++ b/lib/yaml/tag.rb @@ -50,7 +50,9 @@ module YAML end end -class Module # :nodoc: all +class Module + # :stopdoc: + # Adds a taguri _tag_ to a class, used when dumping or loading the class # in YAML. See YAML::tag_class for detailed information on typing and # taguris. -- cgit