From b4e3120f117091232bd2df21f5e32e3c66ef232e Mon Sep 17 00:00:00 2001 From: VijayaPranav Date: Sat, 14 Mar 2026 10:07:25 +0530 Subject: [PATCH] Add example of a good pull request in DOCUMENTATION.md --- DOCUMENTATION.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/DOCUMENTATION.md b/DOCUMENTATION.md index 16b29c5..a67abfa 100644 --- a/DOCUMENTATION.md +++ b/DOCUMENTATION.md @@ -46,3 +46,16 @@ If you know basic Python and GitHub basics, you are good to go 👍 - Proper commit message Example: + +Good Pull Request Example + +Title: +Fix input validation in factorial.py + +Description: +This pull request fixes issue #12 by adding input validation to ensure the user enters a non-negative integer. + +Changes Made: +- Added validation for negative numbers +- Added error message for invalid input +- Improved comments for clarity