Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
st0012 committed Dec 12, 2024
1 parent c9f5316 commit 38f487d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions string.rb
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@
# These instance methods utilize slicing:
#
# - String#[] (aliased as String#slice): Returns a slice copied from +self+.
# - String#[]=: Returns a copy of +self+ with a slice replaced.
# - String#slice!: Returns +self+ with a slice removed.
# - String#[]=: Mutates +self+ with the slice replaced and returns the given slice.
# - String#slice!: Mutates +self+ with the slice removed and returns the removed slice.
#
# Each of the above methods takes arguments that determine the slice
# to be copied or replaced.
Expand Down Expand Up @@ -302,7 +302,7 @@
#
# First, what's elsewhere. \Class +String+:
#
# - Inherits the {Object class}[rdoc-ref:Object@What-27s+Here].
# - Inherits from the {Object class}[rdoc-ref:Object@What-27s+Here].
# - Includes the {Comparable module}[rdoc-ref:Comparable@What-27s+Here].
#
# Here, class +String+ provides methods that are useful for:
Expand Down Expand Up @@ -510,7 +510,7 @@
# - #bytes: Returns an array of the bytes in +self+.
# - #chars: Returns an array of the characters in +self+.
# - #codepoints: Returns an array of the integer ordinals in +self+.
# - #getbyte: Returns an integer byte determined by a given index.
# - #getbyte: Returns the integer byte at the given index in +self+.
# - #grapheme_clusters: Returns an array of the grapheme clusters in +self+.
#
# _Splitting_
Expand Down

0 comments on commit 38f487d

Please sign in to comment.