diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-06-07 11:44:47 +0900 |
---|---|---|
committer | git <[email protected]> | 2022-06-07 11:44:58 +0900 |
commit | 082c2d1b053280890d5b670a2a3f87540dfe4dcf (patch) | |
tree | 5b94fdcd6578bd311220fb392ec67eb1a48ac560 /lib/rdoc/parser | |
parent | 9d927204e7b86eb00bfd07a060a6383139edf741 (diff) |
[ruby/rdoc] [DOC] Undocument internal constants [ci skip]
https://github.com/ruby/rdoc/commit/6d7bf24bb8
Diffstat (limited to 'lib/rdoc/parser')
-rw-r--r-- | lib/rdoc/parser/c.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/parser/c.rb b/lib/rdoc/parser/c.rb index 3f7871b174..52317c5ad8 100644 --- a/lib/rdoc/parser/c.rb +++ b/lib/rdoc/parser/c.rb @@ -122,10 +122,10 @@ class RDoc::Parser::C < RDoc::Parser include RDoc::Text - #-- + # :stopdoc: BOOL_ARG_PATTERN = /\s*+\b([01]|Q?(?:true|false)|TRUE|FALSE)\b\s*/ TRUE_VALUES = ['1', 'TRUE', 'true', 'Qtrue'].freeze - #++ + # :startdoc: ## # Maps C variable names to names of Ruby classes or modules |