diff --git a/julia_set/README.md b/julia_set/README.md index f625f49..a7f7ca9 100644 --- a/julia_set/README.md +++ b/julia_set/README.md @@ -1,4 +1,4 @@ -** Fun fact about Julia Sets: ** +**Fun fact about Julia Sets:** They are a type of Fractals that emerges from iterating polynomial functions in the complex plane. Julia sets are named after the French mathematician Gaston Julia, who studied their properties in the early 20th century. diff --git a/julia_set/dune-project b/julia_set/dune-project index ef83e2c..ce9a374 100644 --- a/julia_set/dune-project +++ b/julia_set/dune-project @@ -5,15 +5,15 @@ (generate_opam_files true) (source - (github mdales/claudius)) + (github ClaudiusFX/claudius)) -(authors "Michael Dales ") +(authors "Michael Dales " "Shreya Pawaskar ") -(maintainers "Michael Dales ") +(maintainers "Michael Dales " "Shreya Pawaskar ") (license ICS) -(documentation https://url/to/documentation) +(documentation https://github.com/claudiusFX/claudius-examples/tree/main/julia_set) (package (name julia_set) diff --git a/julia_set/julia_set.opam b/julia_set/julia_set.opam index 74e548e..73f4517 100644 --- a/julia_set/julia_set.opam +++ b/julia_set/julia_set.opam @@ -3,13 +3,19 @@ opam-version: "2.0" synopsis: "An example on Julia Set" description: "Julia Sets are intricate fractal shapes that arise from iterating a simple mathematical formula in the complex plane." -maintainer: ["Michael Dales "] -authors: ["Michael Dales "] +maintainer: [ + "Michael Dales " + "Shreya Pawaskar " +] +authors: [ + "Michael Dales " + "Shreya Pawaskar " +] license: "ICS" tags: ["graphics" "rendering" "paletted"] -homepage: "https://github.com/mdales/claudius" -doc: "https://url/to/documentation" -bug-reports: "https://github.com/mdales/claudius/issues" +homepage: "https://github.com/ClaudiusFX/claudius" +doc: "https://github.com/claudiusFX/claudius-examples/tree/main/julia_set" +bug-reports: "https://github.com/ClaudiusFX/claudius/issues" depends: [ "ocaml" "dune" {>= "3.12"} @@ -29,4 +35,4 @@ build: [ "@doc" {with-doc} ] ] -dev-repo: "git+https://github.com/mdales/claudius.git" +dev-repo: "git+https://github.com/ClaudiusFX/claudius.git" diff --git a/tcc3extra/test/dune b/tcc3extra/test/dune index 94f6a29..5a1fced 100644 --- a/tcc3extra/test/dune +++ b/tcc3extra/test/dune @@ -1,2 +1,2 @@ (test - (name test_day3extra)) + (name test_tcc3extra)) diff --git a/tcc3extra/test/test_day3extra.ml b/tcc3extra/test/test_tcc3extra.ml similarity index 100% rename from tcc3extra/test/test_day3extra.ml rename to tcc3extra/test/test_tcc3extra.ml