Sfoglia il codice sorgente

Fix remaining x-common references

Stuart Kent 9 anni fa
parent
commit
6eaa4273c6

+ 1
- 1
docs/MAINTAINING.md Vedi File

@@ -16,7 +16,7 @@ As a maintainer, you have write access to several repositories.  "write access"
16 16
 
17 17
 ### Exercism-wide
18 18
 
19
-- [x-common](https://github.com/exercism/x-common) — the library of canonical exercises.
19
+- [problem-specifications](https://github.com/exercism/problem-specifications) — the library of canonical exercises.
20 20
 - [discussions](https://github.com/exercism/discussions) — the place where project-wide conversations happen. 
21 21
   [issues sorted by most recently updated.](https://github.com/exercism/discussions/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc)
22 22
 - [docs](https://github.com/exercism/docs) - the place to find project-wide documentation.

+ 1
- 1
exercises/hello-world/TUTORIAL.md Vedi File

@@ -562,7 +562,7 @@ The entire of Exercism is Open Source and is the labor of love for over
562 562
 
563 563
 A starting point to jumping in can be found here:
564 564
 
565
-https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md
565
+https://github.com/exercism/problem-specifications/blob/master/CONTRIBUTING.md
566 566
 
567 567
 
568 568
 ----

+ 0
- 1
exercises/perfect-numbers/src/test/java/NaturalNumberTest.java Vedi File

@@ -7,7 +7,6 @@ import static org.junit.Assert.assertEquals;
7 7
 
8 8
 /*
9 9
  * version: 1.0.0
10
- * https://github.com/exercism/x-common/blob/19d0c7714ce664a1ad762af624c17f8e269fa8b2/exercises/perfect-numbers/canonical-data.json
11 10
  */
12 11
 public class NaturalNumberTest {
13 12