Skip to content

Commit 0e62775

Browse files
committed
fix paths
1 parent 4071d56 commit 0e62775

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/build-docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const _ = require('lodash');
22
const childProcess = require('child_process');
33
const fs = require('fs');
44

5-
const COMPONENTS_DOCS_DIR = './demo/docsRNC/docs';
5+
const COMPONENTS_DOCS_DIR = './docsRNC/docs';
66

77
const result = childProcess.execSync('find ./src -name "*api.json"');
88
const apiFiles = result.toString().trim().split('\n');

src/agenda/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ type State = {
6666
* @extends: CalendarList
6767
* @extendslink: docs/CalendarList
6868
* @example: https://github.com/wix/react-native-calendars/blob/master/example/src/screens/agenda.js
69-
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/agenda.gif
69+
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/assets/agenda.gif
7070
*/
7171
export default class Agenda extends Component<AgendaProps, State> {
7272
static displayName = 'Agenda';

src/calendar-list/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ type State = {
7474
* @extends: Calendar
7575
* @extendslink: docs/Calendar
7676
* @example: https://github.com/wix/react-native-calendars/blob/master/example/src/screens/calendarsList.js
77-
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/calendar-list.gif
77+
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/assets/calendar-list.gif
7878
*/
7979
class CalendarList extends Component<CalendarListProps, State> {
8080
static displayName = 'CalendarList';

src/calendar/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ interface State {
7979
/**
8080
* @description: Calendar component
8181
* @example: https://github.com/wix/react-native-calendars/blob/master/example/src/screens/calendars.js
82-
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/calendar.gif
82+
* @gif: https://github.com/wix/react-native-calendars/blob/master/demo/assets/calendar.gif
8383
*/
8484
class Calendar extends Component<CalendarProps, State> {
8585
static displayName = 'Calendar';

0 commit comments

Comments
 (0)