Skip to content

Commit 00c2877

Browse files
committed
docs - minot fixes
1 parent 1f9823f commit 00c2877

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

docsRNC/docs/Components/Calendar.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Whether to disable all touch events for inactive days (can be override with 'dis
258258

259259
**Disclaimer**: Make sure that `markedDates` param is immutable. If you change `markedDates` object content but the reference to it does not change calendar update will not be triggered.
260260

261-
Dot marking
261+
- Dot marking
262262

263263
<img height={50} src="https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/assets/marking1.png?raw=true"/>
264264

@@ -276,7 +276,7 @@ Dot marking
276276

277277
You can customize a dot color for each day independently.
278278

279-
Multi-Dot marking
279+
- Multi-Dot marking
280280

281281
<img height={50} src="https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/assets/marking4.png?raw=true"/>
282282

@@ -297,7 +297,7 @@ const workout = {key: 'workout', color: 'green'};
297297
/>;
298298
```
299299

300-
Period marking
300+
- Period marking
301301

302302
<img height={50} src="https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/assets/marking2.png?raw=true"/>
303303

@@ -315,7 +315,7 @@ Period marking
315315
/>
316316
```
317317

318-
Multi-period marking
318+
- Multi-period marking
319319

320320
<img height={50} src="https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/assets/marking6.png?raw=true"/>
321321

@@ -343,7 +343,7 @@ Multi-period marking
343343
/>
344344
```
345345

346-
Custom marking allows you to customize each marker with custom styles.
346+
- Custom marking (allows you to customize each marker with custom styles)
347347

348348
<img height={50} src="https://github.com/wix-private/wix-react-native-calendar/blob/master/demo/assets/marking5.png?raw=true"/>
349349

@@ -377,7 +377,7 @@ Custom marking allows you to customize each marker with custom styles.
377377
/>
378378
```
379379

380-
**NEW!** While we still don't support multi marking type, we add the possibility to combine between `period` and `simple`.
380+
**NEW!** While we still don't support multi marking type, we add the possibility to combine between `period` and `dot`.
381381

382382
```javascript
383383
<Calendar

docsRNC/docs/intro.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $ yarn add react-native-calendars
7777

7878
<br/>
7979

80-
`import {`[Calendar](#calendar), [CalendarList](#calendarlist), [Agenda](#agenda)`} from 'react-native-calendars';`
80+
`import {[Calendar](#calendar), [CalendarList](#calendarlist), [Agenda](#agenda)} from 'react-native-calendars';`
8181

8282
All parameters for components are optional. By default the month of current local date will be displayed.
8383

@@ -128,6 +128,8 @@ LocaleConfig.defaultLocale = 'fr';
128128
- [Tautvilas Mecinskas](https://github.com/tautvilas/) - Initial code - [@tautvilas](https://twitter.com/Tautvilas)
129129
- Katrin Zotchev - Initial design - [@katrin_zot](https://twitter.com/katrin_zot)
130130

131+
- [Inbal Tish](https://github.com/Inbal-Tish) - Main maintainer
132+
131133
See also the list of [contributors](https://github.com/wix/react-native-calendar-components/contributors) who participated in this project.
132134

133135
## Contributing

src/calendar/day/basic/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface BasicDayProps extends ViewProps {
1111
state?: DayState;
1212
/** The marking object */
1313
marking?: MarkingProps;
14-
/** Date marking style [simple/period/multi-dot/multi-period]. Default = 'simple' */
14+
/** Date marking style [dot/multi-dot/period/multi-period]. Default = 'dot' */
1515
markingType?: MarkingTypes;
1616
/** Theme object */
1717
theme?: Theme;

0 commit comments

Comments
 (0)