From 940d9ccfeec5ab0692678255f349dbffac395cc9 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Tue, 8 Jun 2021 18:40:08 -0700 Subject: [PATCH] docs: fix non-escaped URLs Signed-off-by: Andrea Luzzardi --- docs/reference/universe/dagger/op.md | 2 +- docs/reference/universe/git.md | 10 +++++----- docs/reference/universe/js/yarn.md | 1 - stdlib/dagger/op/op.cue | 8 +++----- stdlib/git/git.cue | 2 +- stdlib/js/yarn/yarn.cue | 1 - 6 files changed, 10 insertions(+), 14 deletions(-) diff --git a/docs/reference/universe/dagger/op.md b/docs/reference/universe/dagger/op.md index e5e051e6..d732b878 100644 --- a/docs/reference/universe/dagger/op.md +++ b/docs/reference/universe/dagger/op.md @@ -110,7 +110,7 @@ _No output._ ## #Op -One operation in a pipeline #Op does not current enforce the op spec at full resolution, to avoid triggering performance issues. See https://github.com/dagger/dagger/issues/445 To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop" +One operation in a pipeline ### #Op Inputs diff --git a/docs/reference/universe/git.md b/docs/reference/universe/git.md index 27c1fbc7..b390e0d7 100644 --- a/docs/reference/universe/git.md +++ b/docs/reference/universe/git.md @@ -26,11 +26,11 @@ A git repository ### #Repository Inputs -| Name | Type | Description | -| ------------- |:-------------: |:-------------: | -|*remote* | `string` |Git remote. Example: "https://github.com/dagger/dagger" | -|*ref* | `string` |Git ref: can be a commit, tag or branch. Example: "main" | -|*subdir* | `*null \| string` |(optional) Subdirectory | +| Name | Type | Description | +| ------------- |:-------------: |:-------------: | +|*remote* | `string` |Git remote. Example: `"https://github.com/dagger/dagger"` | +|*ref* | `string` |Git ref: can be a commit, tag or branch. Example: "main" | +|*subdir* | `*null \| string` |(optional) Subdirectory | ### #Repository Outputs diff --git a/docs/reference/universe/js/yarn.md b/docs/reference/universe/js/yarn.md index 05a1b2ef..913fcd7e 100644 --- a/docs/reference/universe/js/yarn.md +++ b/docs/reference/universe/js/yarn.md @@ -5,7 +5,6 @@ sidebar_label: yarn # dagger.io/js/yarn Yarn is a package manager for Javascript applications -https://yarnpkg.com ## #Package diff --git a/stdlib/dagger/op/op.cue b/stdlib/dagger/op/op.cue index aeb94423..abcb023e 100644 --- a/stdlib/dagger/op/op.cue +++ b/stdlib/dagger/op/op.cue @@ -3,11 +3,9 @@ package op // One operation in a pipeline // -// #Op does not current enforce the op spec at full resolution, to avoid -// triggering performance issues. See -// https://github.com/dagger/dagger/issues/445 -// -// To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop" +// FIXME: #Op does not current enforce the op spec at full resolution, to avoid +// FIXME: triggering performance issues. See https://github.com/dagger/dagger/issues/445 +// FIXME: To enforce the full #Op spec (see op_fullop.cue), run with "-t fullop" #Op: { do: string ... diff --git a/stdlib/git/git.cue b/stdlib/git/git.cue index 546bf236..f4eb40fe 100644 --- a/stdlib/git/git.cue +++ b/stdlib/git/git.cue @@ -10,7 +10,7 @@ import ( #Repository: { // Git remote. - // Example: "https://github.com/dagger/dagger" + // Example: `"https://github.com/dagger/dagger"` remote: string @dagger(input) // Git ref: can be a commit, tag or branch. diff --git a/stdlib/js/yarn/yarn.cue b/stdlib/js/yarn/yarn.cue index 47393166..20887bc7 100644 --- a/stdlib/js/yarn/yarn.cue +++ b/stdlib/js/yarn/yarn.cue @@ -1,5 +1,4 @@ // Yarn is a package manager for Javascript applications -// https://yarnpkg.com package yarn import (