Skip to content

Commit d190f04

Browse files
committed
Articles -> Tutorials to be consistent with web site
1 parent 5ea0686 commit d190f04

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Real Python Feed Reader
22

3-
The Real Python Feed Reader is a very simple [web feed](https://en.wikipedia.org/wiki/Web_feed) reader that can download the latest Real Python articles from the [Real Python feed](https://realpython.com/contact/#rss-atom-feed).
3+
The Real Python Feed Reader is a very simple [web feed](https://en.wikipedia.org/wiki/Web_feed) reader that can download the latest Real Python tutorials from the [Real Python feed](https://realpython.com/contact/#rss-atom-feed).
44

55
## Installation
66

@@ -10,10 +10,10 @@ You can install the Real Python Feed Reader from [PyPI](https://pypi.org/project
1010

1111
## How to use
1212

13-
The Real Python Feed Reader is a command line application. To see a list of the [latest Real Python articles](https://realpython.com/) simply call the program:
13+
The Real Python Feed Reader is a command line application. To see a list of the [latest Real Python tutorials](https://realpython.com/) simply call the program:
1414

1515
$ realpython
16-
The latest articles from Real Python (https://realpython.com/)
16+
The latest tutorials from Real Python (https://realpython.com/)
1717
0 Logging in Python
1818
1 The Best Python Books
1919
2 Conditional Statements in Python
@@ -35,7 +35,7 @@ The Real Python Feed Reader is a command line application. To see a list of the
3535
18 Reading and Writing CSV Files in Python
3636
19 Generating Random Data in Python (Guide)
3737

38-
To read one particular article, call the program with the numerical ID of the article as a parameter:
38+
To read one particular tutorial, call the program with the numerical ID of the tutorial as a parameter:
3939

4040
$ realpython 0
4141
# Logging in Python

reader/viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ def show(article: str) -> None:
88

99
def show_list(site: str, titles: List[str]) -> None:
1010
"""Show list of articles"""
11-
print(f"The latest articles from {site}")
11+
print(f"The latest tutorials from {site}")
1212
for article_id, title in enumerate(titles):
1313
print(f"{article_id:>3} {title}")

0 commit comments

Comments
 (0)