Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions php/lesson2/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ For this tutorial, we will be using the interactive mode of the PHP command-line
Let's try doing nothing. You can add comments in three ways:
```php
// Comment style 1 - anything after the double slash to the end of the line is ignored
# Comment style 2 - anything after the hash sign to the end of the line is ignored
/* Comment style 3 - anything to the next star and slash are ignored, can be in the middle of a
/* Comment style 2 - anything to the next star and slash are ignored, can be in the middle of a
line, or be several lines long */
```
Try these out and see absolutely nothing happen! We'll be using these on the end of our example lines to explain them and what you might see as output. You *don't* have to type out comments.
Expand Down