diff --git a/sim_typo.py b/sim_typo.py new file mode 100644 index 000000000..4f0a7569a --- /dev/null +++ b/sim_typo.py @@ -0,0 +1,6 @@ +"""Scenario A demo file — typo fixed on origin/ (P2).""" + + +def fetch_user_profile(user_id): # NOTE: 'profile' is now correctly spelled + """Return user info; renamed to fix the typo.""" + return {"id": user_id, "active": True}