We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7405a84 commit e8ea8f2Copy full SHA for e8ea8f2
lib/irb.rb
@@ -656,8 +656,10 @@
656
# * `%m`: the value of `self.to_s`.
657
# * `%M`: the value of `self.inspect`.
658
# * `%l`: an indication of the type of string; one of `"`, `'`, `/`, `]`.
659
-# * `*NN*i`: Indentation level.
660
-# * `*NN*n`: Line number.
+# * `%NNi`: Indentation level. NN is a 2-digit number that specifies the number
+# of digits of the indentation level (03 will result in 001).
661
+# * `%NNn`: Line number. NN is a 2-digit number that specifies the number
662
+# of digits of the line number (03 will result in 001).
663
# * `%%`: Literal `%`.
664
#
665
0 commit comments