Skip to content

Commit 5fb12bc

Browse files
typos
1 parent 31150fa commit 5fb12bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compiler/chainrules.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ function has_chain_rrule(T)
4242
# Consider the following truth table, for what can occur:
4343
# rrule: fallback, no_rrule: fallback => matches => do not use rrule.
4444
# rrule: specific, no_rrule: fallback => !matches => do use rrule, as haven't opted out.
45-
# rrule: fallback, no_rrule: specific => IMPOSSIBLE, every no_rule us identical to some rrule
45+
# rrule: fallback, no_rrule: specific => IMPOSSIBLE, every no_rule is identical to some rrule
4646
# rrule: specific, no_rrule: specific => matches => do not use rrule as opted out
4747
# rrule: specific, no_rrule: general => !matches => do use rrule as a more specific rrule takes preciedent over more general opted out
4848
# rrule: general , no_rrule: specific => IMPOSSIBLE, every no_rule us identical to some rrule so can't have a more general rrule being hit, as the specific one would hit first
4949
#
50-
# Note that the fallback cases are the same outcome as the general cases as fallback is just most general.
51-
# It can be seen that checking if it matches is the correct way to decide if we should ue the rrule or not.
50+
# Note that the fallback cases are the same outcome as the general cases as fallback is just most general.
51+
# It can be seen that checking if it matches is the correct way to decide if we should use the rrule or not.
5252

5353

5454
do_not_use_rrule = matching_cr_sig(no_rrule_m, rrule_m)

0 commit comments

Comments
 (0)