summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-10-11 20:34:01 +0900
committergit <svn-admin@ruby-lang.org>2021-10-11 20:34:18 +0900
commitdcaaf79ca06a1825a0e489d1c9d188d8c0d6f36f (patch)
treeee016edcb6300a38889f4211394904026636e041 /lib
parent9f94a07e741facccb6b9038ae82922ff1e9c408e (diff)
[ruby/irb] Add periods to doc
https://github.com/ruby/irb/commit/6330601629
Diffstat (limited to 'lib')
-rw-r--r--lib/irb/context.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb
index 9c18b5d6e3..31d4126e5c 100644
--- a/lib/irb/context.rb
+++ b/lib/irb/context.rb
@@ -148,18 +148,18 @@ module IRB
# The toplevel workspace, see #home_workspace
attr_reader :workspace_home
- # WorkSpace in the current context
+ # WorkSpace in the current context.
attr_accessor :workspace
- # The current thread in this context
+ # The current thread in this context.
attr_reader :thread
- # The current input method
+ # The current input method.
#
# Can be either StdioInputMethod, ReadlineInputMethod,
# ReidlineInputMethod, FileInputMethod or other specified when the
# context is created. See ::new for more # information on +input_method+.
attr_accessor :io
- # Current irb session
+ # Current irb session.
attr_accessor :irb
# A copy of the default <code>IRB.conf[:AP_NAME]</code>
attr_accessor :ap_name
@@ -193,15 +193,15 @@ module IRB
# A copy of the default <code>IRB.conf[:PROMPT_MODE]</code>
attr_reader :prompt_mode
- # Standard IRB prompt
+ # Standard IRB prompt.
#
# See IRB@Customizing+the+IRB+Prompt for more information.
attr_accessor :prompt_i
- # IRB prompt for continuated strings
+ # IRB prompt for continuated strings.
#
# See IRB@Customizing+the+IRB+Prompt for more information.
attr_accessor :prompt_s
- # IRB prompt for continuated statement (e.g. immediately after an +if+)
+ # IRB prompt for continuated statement. (e.g. immediately after an +if+)
#
# See IRB@Customizing+the+IRB+Prompt for more information.
attr_accessor :prompt_c
@@ -252,7 +252,7 @@ module IRB
# puts "omg"
# # omg
attr_accessor :echo
- # Whether to echo for assignment expressions
+ # Whether to echo for assignment expressions.
#
# If set to +false+, the value of assignment will not be shown.
#