From a941b96e1d44949df942c79587dec2a01b733eac Mon Sep 17 00:00:00 2001 From: Chris de Graaf Date: Tue, 24 Sep 2019 15:37:06 +0700 Subject: [PATCH] Fix some docs and comments --- src/plugins/git.jl | 2 +- src/template.jl | 1 - test/reference.jl | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/plugins/git.jl b/src/plugins/git.jl index ba1b3e2..a94c855 100644 --- a/src/plugins/git.jl +++ b/src/plugins/git.jl @@ -6,9 +6,9 @@ Creates a Git repository and a `.gitignore` file. ## Keyword Arguments - `ignore::Vector{<:AbstractString}`: Patterns to add to the `.gitignore`. See also: [`gitignore`](@ref). -- `manifest::Bool`: Whether or not to commit `Manifest.toml`. - `ssh::Bool`: Whether or not to use SSH for the remote. If left unset, HTTPS is used. +- `manifest::Bool`: Whether or not to commit `Manifest.toml`. - `gpgsign::Bool`: Whether or not to sign commits with your GPG key. This option requires that the Git CLI is installed. """ diff --git a/src/template.jl b/src/template.jl index 84e9ee1..327a03d 100644 --- a/src/template.jl +++ b/src/template.jl @@ -28,7 +28,6 @@ A configuration used to generate packages. - `dir::AbstractString="$(contractuser(Pkg.devdir()))"`: Directory to place packages in. - `host::AbstractString="github.com"`: URL to the code hosting service where packages will reside. - `julia_version::VersionNumber=$(repr(default_version()))`: Minimum allowed Julia version. -- `develop::Bool=true`: Whether or not to `develop` new packages in the active environment. ### Template Plugins - `plugins::Vector{<:Plugin}=Plugin[]`: A list of [`Plugin`](@ref)s used by the template. diff --git a/test/reference.jl b/test/reference.jl index 325a176..942248f 100644 --- a/test/reference.jl +++ b/test/reference.jl @@ -1,5 +1,3 @@ -# TODO: License fixtures need to be updated every year because they don't use Mustache. - function PT.user_view(::Citation, ::Template, ::AbstractString) return Dict("MONTH" => 8, "YEAR" => 2019) end