Skip to content

Commit fa5dcae

Browse files
committed
Add $ to bash and remove leftover quote
1 parent 6e0e2e2 commit fa5dcae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

django-flashcards-app/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build a Flashcards App With Django
22

3-
Follow the [step-by-step instructions](https://realpython.com/django-flashcards-app/) on _Real Python_ to build your own flashcards app with Django.
3+
Follow the [step-by-step instructions](https://realpython.com/django-flashcards-app/) on Real Python to build your own flashcards app with Django.
44

55
## Setup
66

@@ -9,13 +9,13 @@ You can run the provided example project on your local machine by following the
99
Create a new virtual environment:
1010

1111
```bash
12-
python3 -m venv venv
12+
$ python3 -m venv venv
1313
```
1414

1515
Activate the virtual environment:
1616

1717
```bash
18-
source ./venv/bin/activate
18+
$ source venv/bin/activate
1919
```
2020

2121
Navigate to the folder for the step you're currently on.

django-flashcards-app/source_code_final/cards/templates/cards/card_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h2>
66
All Cards
77
</h2>
88
<a href="{% url 'card-create' %}" role="button">
9-
✨ Create New Card"
9+
✨ Create New Card
1010
</a>
1111
{% for card in card_list %}
1212
{% ifchanged %}

0 commit comments

Comments
 (0)