Skip to content
Closed
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
2 changes: 1 addition & 1 deletion 2023/day07/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Day 7 Task: Understanding package manager and systemctl

#Please Do the task properly
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add space after hash in Markdown heading.

Markdown syntax requires a space after the # symbol for proper heading formatting. Line 2 is missing this space.

-#Please Do the task properly
+# Please Do the task properly
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
#Please Do the task properly
# Please Do the task properly
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

2-2: No space after hash on atx style heading

(MD018, no-missing-space-atx)

🤖 Prompt for AI Agents
In 2023/day07/README.md around line 2, the Markdown heading lacks a space after
the '#' which prevents proper heading rendering; update the line to insert a
single space after the '#' so the heading reads "# Please Do the task properly"
(or similar phrasing) to conform to Markdown heading syntax.

### What is a package manager in Linux?

In simpler words, a package manager is a tool that allows users to install, remove, upgrade, configure and manage software packages on an operating system. The package manager can be a graphical application like a software center or a command line tool like apt-get or pacman.
Expand Down