Skip to content
Snippets Groups Projects
Commit 05c93849 authored by Sergey Bozhko's avatar Sergey Bozhko :eyes: Committed by Björn Brandenburg
Browse files

Change name of a matched variable

parent 9e805d0b
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,7 @@ Section State. ...@@ -22,7 +22,7 @@ Section State.
Definition service_in (s : processor_state) : nat := Definition service_in (s : processor_state) : nat :=
match s with match s with
| Idle => 0 | Idle => 0
| Progress j' s => if j' == j then s else 0 | Progress j' speed => if j' == j then speed else 0
end. end.
End Service. End Service.
...@@ -35,4 +35,5 @@ Section State. ...@@ -35,4 +35,5 @@ Section State.
Proof. Proof.
by move=> j []//= j' s->. by move=> j []//= j' s->.
Defined. Defined.
End State. End State.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment