Skip to content

Commit

Permalink
fix broken links in docs (#2673)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaamison authored and giladgray committed Jul 11, 2018
1 parent e2ec74a commit 3f910a8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/forms/form-group.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@# Form group

Form groups support more complex form controls than [simple labels](#core/components/forms/label.simple-labels),
such as [control groups](#core/components/forms/control-group) or [`NumericInput`](#core/components/forms/numeric-input).
Form groups support more complex form controls than [simple labels](#core/components/label),
such as [control groups](#core/components/control-group) or [`NumericInput`](#core/components/numeric-input).
They also support additional helper text to aid with user navigation.

@reactExample FormGroupExample
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/forms/numeric-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Make sure to review the [getting started docs for installation info](#blueprint/
@### Responsive numeric inputs

`NumericInput` can be styled with the same set of CSS classes that modify
regular [control groups](#core/components/forms/control-group). The most appropriate
regular [control groups](#core/components/control-group). The most appropriate
such modifier for `NumericInput` is `@ns-fill`, which when passed as a
`className` will make the component expand to fill all available width.

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/forms/text-inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ the parent input.
in CSS cannot accomodate buttons whose width varies due to text content. You should use icons on
buttons instead.</p>

Conversely, the [`InputGroup`](#core/components/forms/input-group.javascript-api) React
Conversely, the [`InputGroup`](#core/components/text-inputs.input-group) React
component _does_ support arbitrary content in its right element.
</div>

Expand Down
2 changes: 1 addition & 1 deletion packages/datetime/src/dateInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface IDateInputProps extends IDatePickerBaseProps, IDateFormatProps,
defaultValue?: Date;

/**
* Props to pass to the [input group](#core/components/forms/input-group.javascript-api).
* Props to pass to the [input group](#core/components/text-inputs.input-group).
* `disabled` and `value` will be ignored in favor of the top-level props on this component.
* `type` is fixed to "text" and `ref` is not supported; use `inputRef` instead.
*/
Expand Down
4 changes: 2 additions & 2 deletions packages/datetime/src/dateRangeInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export interface IDateRangeInputProps extends IDatePickerBaseProps, IDateFormatP
disabled?: boolean;

/**
* Props to pass to the end-date [input group](#core/components/forms/input-group.javascript-api).
* Props to pass to the end-date [input group](#core/components/text-inputs.input-group).
* `disabled` and `value` will be ignored in favor of the top-level props on this component.
* `ref` is not supported; use `inputRef` instead.
*/
Expand Down Expand Up @@ -128,7 +128,7 @@ export interface IDateRangeInputProps extends IDatePickerBaseProps, IDateFormatP
shortcuts?: boolean | IDateRangeShortcut[];

/**
* Props to pass to the start-date [input group](#core/components/forms/input-group.javascript-api).
* Props to pass to the start-date [input group](#core/components/text-inputs.input-group).
* `disabled` and `value` will be ignored in favor of the top-level props on this component.
* `ref` is not supported; use `inputRef` instead.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/datetime/src/dateinput.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@# Date input

The `DateInput` component is an [input group](#core/components/forms/input-group)
The `DateInput` component is an [input group](#core/components/text-inputs.input-group)
that shows a [`DatePicker`](#datetime/datepicker) in a [`Popover`](#core/components/popover)
on focus. Use it in forms where the user must enter a date.

Expand Down
4 changes: 2 additions & 2 deletions packages/datetime/src/daterangeinput.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@# Date range input

The `DateRangeInput` component is a [control group](#core/components/forms/control-group) composed of two
[input groups](#core/components/forms/input-group). It shows a
The `DateRangeInput` component is a [control group](#core/components/control-group) composed of two
[input groups](#core/components/text-inputs.input-group). It shows a
[`DateRangePicker`](#datetime/daterangepicker) in a [`Popover`](#core/components/popover) on focus.

Use this component in forms where the user must enter a date range.
Expand Down

1 comment on commit 3f910a8

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix broken links in docs (#2673)

Preview: documentation | landing | table

Please sign in to comment.