From 4114179ca7e025c044b721953b90aa33e4c4e442 Mon Sep 17 00:00:00 2001 From: umair mehmood Date: Mon, 11 Mar 2024 00:05:15 +0500 Subject: [PATCH] Fixed #35286 -- Updated broken link in django/template/smartif.py docstring. --- django/template/smartif.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/template/smartif.py b/django/template/smartif.py index 0a917c2aaa4..6a6a03dd84c 100644 --- a/django/template/smartif.py +++ b/django/template/smartif.py @@ -3,7 +3,7 @@ Parser and utilities for the smart 'if' tag """ # Using a simple top down parser, as described here: -# http://effbot.org/zone/simple-top-down-parsing.htm. +# https://11l-lang.org/archive/simple-top-down-parsing/ # 'led' = left denotation # 'nud' = null denotation # 'bp' = binding power (left = lbp, right = rbp)