From 03e23abf2ee494414214937c3f7b71f6f0ec8d87 Mon Sep 17 00:00:00 2001 From: rserraf Date: Sat, 9 Nov 2024 11:05:00 +0100 Subject: [PATCH] fix audit readme file posts/comments --- subjects/forum/audit/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/forum/audit/README.md b/subjects/forum/audit/README.md index a389c5c4f..b1350898c 100644 --- a/subjects/forum/audit/README.md +++ b/subjects/forum/audit/README.md @@ -44,11 +44,11 @@ ###### Does it present the user you created? -##### Try creating a post in the forum, open the database with `sqlite3 ` and perform a query to select all the users (Example: SELECT \* FROM post;). +##### Try creating a post in the forum, open the database with `sqlite3 ` and perform a query to select all the posts (Example: SELECT \* FROM posts;). ###### Does it present the post you created? -##### Try creating a comment in the forum, open the database with `sqlite3 ` and perform a query to select all the users (Example: SELECT \* FROM comment;). +##### Try creating a comment in the forum, open the database with `sqlite3 ` and perform a query to select all the comments (Example: SELECT \* FROM comments;). ###### Does it present the comment you created?