Skip to content

Commit 714e2a1

Browse files
Update links in Haskell haddock. Refs #251.
Some links to different repo locations in the Haddock comments that accompany the code are outdated, and point to locations that have been either outdated or broken as a result of several repo reorganization processes. This commit updates links in the code comments. Where a new version of the file being mentioned did not exist in the current development branch, the link has been adjusted to point to a working location using the last known tag containing that file. [ci skip]
1 parent 80394e4 commit 714e2a1

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

copilot-libraries/src/Copilot/Library/Clocks.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
-- This library generates new clocks based on a base period and phase.
77
--
88
-- = Example Usage
9-
--
10-
-- Also see @Examples/ClockExamples.hs@ in the
11-
-- <https://github.com/leepike/Copilot/tree/master/Examples Copilot repository>.
9+
--
10+
-- Also see @examples/Clock.hs@ in the
11+
-- <https://github.com/Copilot-Language/copilot/blob/master/copilot/examples/ Copilot repository>.
1212
--
1313
-- @
1414
-- 'clk' ( 'period' 3 ) ( 'phase' 1 )

copilot-libraries/src/Copilot/Library/LTL.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
-- holds if @p@ holds at least once every four periods (3 transitions).
1515
--
1616
-- /Interface:/ See @Examples/LTLExamples.hs@ in the
17-
-- <https://github.com/leepike/Copilot/tree/master/Examples Copilot repository>.
18-
--
17+
-- <https://github.com/Copilot-Language/copilot/blob/v2.2.1/Examples Copilot repository>.
18+
--
1919
-- You can embed an LTL specification within a Copilot specification using the
2020
-- form:
2121
--

copilot-libraries/src/Copilot/Library/PTLTL.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- Provides past-time linear-temporal logic (ptLTL operators).
77
--
88
-- /Interface:/ See @Examples/PTLTLExamples.hs@ in the
9-
-- <https://github.com/leepike/Copilot/tree/master/Examples Copilot repository>.
9+
-- <https://github.com/Copilot-Language/copilot/blob/v2.2.1/Examples Copilot repository>.
1010
--
1111
-- You can embed a ptLTL specification within a Copilot specification using
1212
-- the form:

copilot-libraries/src/Copilot/Library/Voting.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
--
1414
-- * <ftp://net9.cs.utexas.edu/pub/techreports/tr81-32.pdf Robert S. Boyer and J Strother Moore, \"MJRTY - A Fast Majority Vote Algorithm\", 1981>
1515
--
16-
-- In addition, <https://github.com/leepike/copilot-discussion/blob/master/tutorial/copilot_tutorial.pdf An Introduction to Copilot> in
17-
-- <https://github.com/leepike/copilot-discussion copilot-discussion> explains
16+
-- In addition, <https://copilot-language.github.io/downloads/copilot_tutorial.pdf An Introduction to Copilot> and
17+
-- <https://github.com/Copilot-Language/copilot-discussion copilot-discussion> explain
1818
-- a form of this code in section 4.
1919
--
2020
-- For instance, with four streams passed to 'majority', and the candidate stream
@@ -29,8 +29,8 @@
2929
-- 1 1 1 1 1 true
3030
-- @
3131
--
32-
-- For other examples, see @Examples/VotingExamples.hs@ in the
33-
-- <https://github.com/leepike/Copilot/tree/master/Examples Copilot repository>.
32+
-- For other examples, see @examples/Voting.hs@ in the
33+
-- <https://github.com/Copilot-Language/copilot/blob/master/copilot/examples/ Copilot repository>.
3434

3535
{-# LANGUAGE RebindableSyntax #-}
3636

0 commit comments

Comments
 (0)