You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/concept/log-line-parser/.docs/introduction.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,9 @@
3
3
Like everything in Ruby, a `String` is an object.
4
4
Strings are made up of an arbitrary sequence of bytes (normally characters) and are initialized and manipulated like any other object.
5
5
In fact, one of the most useful things about Ruby is the numerous methods that can be called on strings (and other objects) to save you a lot of time writing code.
6
-
In this method we are going to explore and play with some of those helper methods.
6
+
In this exercise we are going to explore and play with some of those helper methods.
7
7
8
-
## Creating a string.
8
+
## Creating a string
9
9
10
10
Although you can use `String.new(...)` to create a string, it is much more common to use a literal.
11
11
There are lots of different literals you can use - and they split into two categories: those that allow interpolation and those that don't.
0 commit comments