From 746729971dec657446be7a6e6f3146792634425b Mon Sep 17 00:00:00 2001 From: nbouziani Date: Tue, 12 Sep 2023 16:19:03 +0100 Subject: [PATCH] Fix comment --- ufl/algorithms/analysis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ufl/algorithms/analysis.py b/ufl/algorithms/analysis.py index aa0f751f1..0df278ef2 100644 --- a/ufl/algorithms/analysis.py +++ b/ufl/algorithms/analysis.py @@ -85,8 +85,8 @@ def extract_type(a, ufl_types): base_form_objects = () for o in base_form_ops: # This accounts for having BaseFormOperator in Forms: if N is a BaseFormOperator - # N(u; v*) * v * dx <=> action(v1 * v * dx, N(...; v*)) - # where v, v1 are `Argument`s and v* a `Coargument`. + # `N(u; v*) * v * dx` <=> `action(v1 * v * dx, N(...; v*))` + # where `v`, `v1` are `Argument`s and `v*` a `Coargument`. for ai in tuple(arg for arg in o.argument_slots(isinstance(a, Form))): # Extracting BaseArguments of an object of which a Coargument is an argument, # then we just return the dual argument of the Coargument and not its primal argument.