Skip to content

Commit a64d5cc

Browse files
jacobmllr95tmorehouse
authored andcommitted
chore(docs): correct use of its vs. it's and minor tweaks (bootstrap-vue#4664)
1 parent b899fac commit a64d5cc

File tree

35 files changed

+50
-49
lines changed

35 files changed

+50
-49
lines changed

docs/markdown/reference/starter-templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ created when you run `yarn build`.
111111

112112
### Importing individual components and directives
113113

114-
As an example, you can import `<b-card>` (plus some of it's sub components) and `<b-table>` as
114+
As an example, you can import `<b-card>` (plus some of its sub components) and `<b-table>` as
115115
follows:
116116

117117
```js

docs/markdown/reference/validation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
## Vuelidate
77

88
[Vuelidate](https://github.com/vuelidate/vuelidate/) provides "Simple, lightweight model-based
9-
validation for Vue.js". Installation instructions and other documentation can be found at
10-
https://vuelidate.netlify.com/.
9+
validation for Vue.js". Installation instructions and other documentation can be found at their
10+
[website](https://vuelidate.js.org/).
1111

1212
### Vuelidate example
1313

docs/pages/play.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ const STORAGE_MAX_RETENTION = 7 * 24 * 60 * 60 * 1000 // 7 days
340340
341341
// --- Helper functions ---
342342
343-
// Remove a node from it's parent's children
343+
// Remove a node from its parent's children
344344
const removeNode = node => node && node.parentNode && node.parentNode.removeChild(node)
345345
346346
// Indent a value by the given count

src/components/button/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"props": [
1414
{
1515
"prop": "block",
16-
"description": "Renders a 100% width button (expands to the width of it's parent container)"
16+
"description": "Renders a 100% width button (expands to the width of its parent container)"
1717
},
1818
{
1919
"prop": "type",

src/components/card/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The title is rendered using the sub-component `<b-card-title>` while the Sub Tit
9191
the sub-component `<b-card-sub-title>`.
9292

9393
With sub-component `<b-card-text>`, paragraph text can be added to the card. The last
94-
`<b-card-text>` in the card body will have it's bottom margin automatically removed (via CSS). Text
94+
`<b-card-text>` in the card body will have its bottom margin automatically removed (via CSS). Text
9595
within `<b-card-text>` can also be styled with the standard HTML tags.
9696

9797
Links can be added and placed next to each other by adding the `.card-link` class to a `<a>` tag (or
@@ -119,7 +119,7 @@ Links can be added and placed next to each other by adding the `.card-link` clas
119119

120120
The `<b-card>` prop `img-src` places an image on the top of the card, and use the `img-alt` prop to
121121
specify a string to be placed in the image's `alt` attribute. The image specified by the `img-src`
122-
prop will be responsive and will adjust it's width when the width of the card is changed.
122+
prop will be responsive and will adjust its width when the width of the card is changed.
123123

124124
Alternatively you can manually place images inside `<b-card>` using the sub-component
125125
`<b-card-img>`. See the kitchen sink example below for usage.

src/components/dropdown/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ constrain/set the menu width.
486486
```
487487

488488
`<b-dropdown-text>` has the BootstrapVue custom class `.b-dropdown-text` applied to it which sets
489-
some basic styles which are suitable in most situations. By default it's width will be the same as
489+
some basic styles which are suitable in most situations. By default its width will be the same as
490490
the widest `<b-dropdown-item>` content. You may need to place additional styles or helper classes on
491491
the component.
492492

@@ -547,7 +547,7 @@ regular form.
547547
```
548548

549549
`<b-dropdown-form>` has the BootstrapVue custom class `.b-dropdown-form` applied to it which sets
550-
some basic styles which are suitable in most situations. By default it's width will be the same as
550+
some basic styles which are suitable in most situations. By default its width will be the same as
551551
the widest `<b-dropdown-item>` content. You may need to place additional styles or helper classes on
552552
the component.
553553

src/components/dropdown/_dropdown-form.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $bv-dropdown-form-defined: false !default;
1717
// From https://github.com/twbs/bootstrap/blob/master/scss/_reboot.scss
1818
// mimicking button:focus styling.
1919
// We add important here as anything with tabindex `-1` and focused will not
20-
// have a focus ring due to reboot.scss and it's `!important` override.
20+
// have a focus ring due to reboot.scss and its `!important` override.
2121
// Needed for keyboard navigation high-lighting
2222
outline: 1px dotted !important;
2323
outline: 5px auto -webkit-focus-ring-color !important;

src/components/dropdown/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
{
7171
"prop": "block",
7272
"version": "2.1.0",
73-
"description": "Renders a 100% width toggle button (expands to the width of it's parent container)"
73+
"description": "Renders a 100% width toggle button (expands to the width of its parent container)"
7474
},
7575
{
7676
"prop": "noCaret",

src/components/form-input/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ rendered and a console warning will be issued.
8484
separate inputs.
8585
- `date` and `time` inputs are native browser types, and are not a custom date/time picker.
8686
- For date and time style inputs, where supported, the displayed value in the GUI may be different
87-
than what is returned by it's value (i.e. ordering of year-month-date).
87+
than what is returned by its value (i.e. ordering of year-month-date).
8888
- Regardless of input type, the value is **always** returned as a string representation.
8989
- `v-model.lazy` is not supported by `<b-form-input>` (nor any custom Vue component). Use the `lazy`
9090
prop instead.

src/components/form-input/_form-input.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ input[type="color"].form-control:disabled {
9797
@include transition($input-transition);
9898
// Bootstrap v4.3.2 has deprecated this mixin
9999
// @include form-control-focus();
100-
// So we manually add it's content here
100+
// So we manually add its content here
101101
&:focus {
102102
color: $input-focus-color; // only needed for fallback to text input
103103
background-color: $input-focus-bg;

0 commit comments

Comments
 (0)